| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "test_support_ios.h", | 89 "test_support_ios.h", |
| 90 "test_support_ios.mm", | 90 "test_support_ios.mm", |
| 91 "test_switches.cc", | 91 "test_switches.cc", |
| 92 "test_switches.h", | 92 "test_switches.h", |
| 93 "test_timeouts.cc", | 93 "test_timeouts.cc", |
| 94 "test_timeouts.h", | 94 "test_timeouts.h", |
| 95 "thread_test_helper.cc", | 95 "thread_test_helper.cc", |
| 96 "thread_test_helper.h", | 96 "thread_test_helper.h", |
| 97 "trace_event_analyzer.cc", | 97 "trace_event_analyzer.cc", |
| 98 "trace_event_analyzer.h", | 98 "trace_event_analyzer.h", |
| 99 "trace_to_file.cc", |
| 100 "trace_to_file.h", |
| 99 "values_test_util.cc", | 101 "values_test_util.cc", |
| 100 "values_test_util.h", | 102 "values_test_util.h", |
| 101 ] | 103 ] |
| 102 | 104 |
| 103 public_deps = [ | 105 public_deps = [ |
| 104 "//base", | 106 "//base", |
| 105 "//base:i18n", | 107 "//base:i18n", |
| 106 "//base:base_static", | 108 "//base:base_static", |
| 107 ] | 109 ] |
| 108 deps = [ | 110 deps = [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 } | 164 } |
| 163 | 165 |
| 164 if (is_android) { | 166 if (is_android) { |
| 165 generate_jni("base_unittests_jni_headers") { | 167 generate_jni("base_unittests_jni_headers") { |
| 166 sources = [ | 168 sources = [ |
| 167 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 169 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 168 ] | 170 ] |
| 169 jni_package = "base" | 171 jni_package = "base" |
| 170 } | 172 } |
| 171 } | 173 } |
| OLD | NEW |