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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 "trace_event_analyzer.cc", | 117 "trace_event_analyzer.cc", |
118 "trace_event_analyzer.h", | 118 "trace_event_analyzer.h", |
119 "trace_to_file.cc", | 119 "trace_to_file.cc", |
120 "trace_to_file.h", | 120 "trace_to_file.h", |
121 "user_action_tester.cc", | 121 "user_action_tester.cc", |
122 "user_action_tester.h", | 122 "user_action_tester.h", |
123 "values_test_util.cc", | 123 "values_test_util.cc", |
124 "values_test_util.h", | 124 "values_test_util.h", |
125 ] | 125 ] |
126 | 126 |
| 127 configs += [ "//build/config:precompiled_headers" ] |
| 128 |
127 data = [ | 129 data = [ |
128 # The isolate needs this script for setting up the test. It's not actually | 130 # The isolate needs this script for setting up the test. It's not actually |
129 # needed to run this target locally. | 131 # needed to run this target locally. |
130 "//testing/test_env.py", | 132 "//testing/test_env.py", |
131 ] | 133 ] |
132 | 134 |
133 public_deps = [ | 135 public_deps = [ |
134 ":test_config", | 136 ":test_config", |
135 "//base", | 137 "//base", |
136 "//base:i18n", | 138 "//base:i18n", |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 | 209 |
208 if (is_android) { | 210 if (is_android) { |
209 generate_jni("base_unittests_jni_headers") { | 211 generate_jni("base_unittests_jni_headers") { |
210 sources = [ | 212 sources = [ |
211 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 213 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
212 "android/java/src/org/chromium/base/TestUiThread.java", | 214 "android/java/src/org/chromium/base/TestUiThread.java", |
213 ] | 215 ] |
214 jni_package = "base" | 216 jni_package = "base" |
215 } | 217 } |
216 } | 218 } |
OLD | NEW |