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 15 matching lines...) Expand all Loading... |
26 source_set("test_support") { | 26 source_set("test_support") { |
27 # TODO http://crbug.com/412064 enable this flag all the time. | 27 # TODO http://crbug.com/412064 enable this flag all the time. |
28 testonly = !is_component_build | 28 testonly = !is_component_build |
29 sources = [ | 29 sources = [ |
30 "expectations/expectation.cc", | 30 "expectations/expectation.cc", |
31 "expectations/expectation.h", | 31 "expectations/expectation.h", |
32 "expectations/parser.cc", | 32 "expectations/parser.cc", |
33 "expectations/parser.h", | 33 "expectations/parser.h", |
34 "gtest_util.cc", | 34 "gtest_util.cc", |
35 "gtest_util.h", | 35 "gtest_util.h", |
| 36 "gtest_xml_unittest_result_printer.cc", |
| 37 "gtest_xml_unittest_result_printer.h", |
36 "gtest_xml_util.cc", | 38 "gtest_xml_util.cc", |
37 "gtest_xml_util.h", | 39 "gtest_xml_util.h", |
38 "histogram_tester.cc", | 40 "histogram_tester.cc", |
39 "histogram_tester.h", | 41 "histogram_tester.h", |
40 "launcher/test_launcher.cc", | 42 "launcher/test_launcher.cc", |
41 "launcher/test_launcher.h", | 43 "launcher/test_launcher.h", |
42 "launcher/test_result.cc", | 44 "launcher/test_result.cc", |
43 "launcher/test_result.h", | 45 "launcher/test_result.h", |
44 "launcher/test_results_tracker.cc", | 46 "launcher/test_results_tracker.cc", |
45 "launcher/test_results_tracker.h", | 47 "launcher/test_results_tracker.h", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 "test_shortcut_win.cc", | 107 "test_shortcut_win.cc", |
106 "test_shortcut_win.h", | 108 "test_shortcut_win.h", |
107 "test_simple_task_runner.cc", | 109 "test_simple_task_runner.cc", |
108 "test_simple_task_runner.h", | 110 "test_simple_task_runner.h", |
109 "test_suite.cc", | 111 "test_suite.cc", |
110 "test_suite.h", | 112 "test_suite.h", |
111 "test_support_android.cc", | 113 "test_support_android.cc", |
112 "test_support_android.h", | 114 "test_support_android.h", |
113 "test_support_ios.h", | 115 "test_support_ios.h", |
114 "test_support_ios.mm", | 116 "test_support_ios.mm", |
| 117 "test_ui_thread_android.cc", |
| 118 "test_ui_thread_android.h", |
115 "thread_test_helper.cc", | 119 "thread_test_helper.cc", |
116 "thread_test_helper.h", | 120 "thread_test_helper.h", |
117 "trace_event_analyzer.cc", | 121 "trace_event_analyzer.cc", |
118 "trace_event_analyzer.h", | 122 "trace_event_analyzer.h", |
119 "trace_to_file.cc", | 123 "trace_to_file.cc", |
120 "trace_to_file.h", | 124 "trace_to_file.h", |
121 "user_action_tester.cc", | 125 "user_action_tester.cc", |
122 "user_action_tester.h", | 126 "user_action_tester.h", |
123 "values_test_util.cc", | 127 "values_test_util.cc", |
124 "values_test_util.h", | 128 "values_test_util.h", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 deps = [ | 200 deps = [ |
197 "//base", | 201 "//base", |
198 ] | 202 ] |
199 } | 203 } |
200 } | 204 } |
201 | 205 |
202 if (is_android) { | 206 if (is_android) { |
203 generate_jni("base_unittests_jni_headers") { | 207 generate_jni("base_unittests_jni_headers") { |
204 sources = [ | 208 sources = [ |
205 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 209 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 210 "android/java/src/org/chromium/base/TestUiThread.java", |
206 ] | 211 ] |
207 jni_package = "base" | 212 jni_package = "base" |
208 } | 213 } |
209 } | 214 } |
OLD | NEW |