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 17 matching lines...) Expand all Loading... |
28 testonly = !is_component_build | 28 testonly = !is_component_build |
29 sources = [ | 29 sources = [ |
30 "gtest_util.cc", | 30 "gtest_util.cc", |
31 "gtest_util.h", | 31 "gtest_util.h", |
32 "gtest_xml_unittest_result_printer.cc", | 32 "gtest_xml_unittest_result_printer.cc", |
33 "gtest_xml_unittest_result_printer.h", | 33 "gtest_xml_unittest_result_printer.h", |
34 "gtest_xml_util.cc", | 34 "gtest_xml_util.cc", |
35 "gtest_xml_util.h", | 35 "gtest_xml_util.h", |
36 "histogram_tester.cc", | 36 "histogram_tester.cc", |
37 "histogram_tester.h", | 37 "histogram_tester.h", |
| 38 "ios/wait_util.h", |
| 39 "ios/wait_util.mm", |
38 "launcher/test_launcher.cc", | 40 "launcher/test_launcher.cc", |
39 "launcher/test_launcher.h", | 41 "launcher/test_launcher.h", |
40 "launcher/test_result.cc", | 42 "launcher/test_result.cc", |
41 "launcher/test_result.h", | 43 "launcher/test_result.h", |
42 "launcher/test_results_tracker.cc", | 44 "launcher/test_results_tracker.cc", |
43 "launcher/test_results_tracker.h", | 45 "launcher/test_results_tracker.h", |
44 "launcher/unit_test_launcher.cc", | 46 "launcher/unit_test_launcher.cc", |
45 "launcher/unit_test_launcher.h", | 47 "launcher/unit_test_launcher.h", |
46 "launcher/unit_test_launcher_ios.cc", | 48 "launcher/unit_test_launcher_ios.cc", |
47 "mock_chrome_application_mac.h", | 49 "mock_chrome_application_mac.h", |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 | 211 |
210 if (is_android) { | 212 if (is_android) { |
211 generate_jni("base_unittests_jni_headers") { | 213 generate_jni("base_unittests_jni_headers") { |
212 sources = [ | 214 sources = [ |
213 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 215 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
214 "android/java/src/org/chromium/base/TestUiThread.java", | 216 "android/java/src/org/chromium/base/TestUiThread.java", |
215 ] | 217 ] |
216 jni_package = "base" | 218 jni_package = "base" |
217 } | 219 } |
218 } | 220 } |
OLD | NEW |