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