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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "launcher/test_result.h", | 43 "launcher/test_result.h", |
44 "launcher/test_results_tracker.cc", | 44 "launcher/test_results_tracker.cc", |
45 "launcher/test_results_tracker.h", | 45 "launcher/test_results_tracker.h", |
46 "launcher/unit_test_launcher.cc", | 46 "launcher/unit_test_launcher.cc", |
47 "launcher/unit_test_launcher.h", | 47 "launcher/unit_test_launcher.h", |
48 "launcher/unit_test_launcher_ios.cc", | 48 "launcher/unit_test_launcher_ios.cc", |
49 "mock_chrome_application_mac.h", | 49 "mock_chrome_application_mac.h", |
50 "mock_chrome_application_mac.mm", | 50 "mock_chrome_application_mac.mm", |
51 "mock_devices_changed_observer.cc", | 51 "mock_devices_changed_observer.cc", |
52 "mock_devices_changed_observer.h", | 52 "mock_devices_changed_observer.h", |
| 53 "mock_entropy_provider.cc", |
| 54 "mock_entropy_provider.h", |
53 "mock_log.cc", | 55 "mock_log.cc", |
54 "mock_log.h", | 56 "mock_log.h", |
55 "multiprocess_test.cc", | 57 "multiprocess_test.cc", |
56 "multiprocess_test.h", | 58 "multiprocess_test.h", |
57 "multiprocess_test_android.cc", | 59 "multiprocess_test_android.cc", |
58 "null_task_runner.cc", | 60 "null_task_runner.cc", |
59 "null_task_runner.h", | 61 "null_task_runner.h", |
60 "opaque_ref_counted.cc", | 62 "opaque_ref_counted.cc", |
61 "opaque_ref_counted.h", | 63 "opaque_ref_counted.h", |
62 "perf_log.cc", | 64 "perf_log.cc", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 "test_support_android.cc", | 111 "test_support_android.cc", |
110 "test_support_android.h", | 112 "test_support_android.h", |
111 "test_support_ios.h", | 113 "test_support_ios.h", |
112 "test_support_ios.mm", | 114 "test_support_ios.mm", |
113 "thread_test_helper.cc", | 115 "thread_test_helper.cc", |
114 "thread_test_helper.h", | 116 "thread_test_helper.h", |
115 "trace_event_analyzer.cc", | 117 "trace_event_analyzer.cc", |
116 "trace_event_analyzer.h", | 118 "trace_event_analyzer.h", |
117 "trace_to_file.cc", | 119 "trace_to_file.cc", |
118 "trace_to_file.h", | 120 "trace_to_file.h", |
| 121 "user_action_tester.cc", |
| 122 "user_action_tester.h", |
119 "values_test_util.cc", | 123 "values_test_util.cc", |
120 "values_test_util.h", | 124 "values_test_util.h", |
121 ] | 125 ] |
122 | 126 |
123 public_deps = [ | 127 public_deps = [ |
124 ":test_config", | 128 ":test_config", |
125 "//base", | 129 "//base", |
126 "//base:i18n", | 130 "//base:i18n", |
127 "//base:base_static", | 131 "//base:base_static", |
128 ] | 132 ] |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 source_set("run_all_unittests") { | 180 source_set("run_all_unittests") { |
177 testonly = true | 181 testonly = true |
178 sources = [ | 182 sources = [ |
179 "run_all_unittests.cc", | 183 "run_all_unittests.cc", |
180 ] | 184 ] |
181 deps = [ | 185 deps = [ |
182 ":test_support", | 186 ":test_support", |
183 ] | 187 ] |
184 } | 188 } |
185 | 189 |
| 190 if (is_linux) { |
| 191 shared_library("malloc_wrapper") { |
| 192 testonly = true |
| 193 sources = [ |
| 194 "malloc_wrapper.cc", |
| 195 ] |
| 196 deps = [ |
| 197 "//base", |
| 198 ] |
| 199 } |
| 200 } |
| 201 |
186 if (is_android) { | 202 if (is_android) { |
187 generate_jni("base_unittests_jni_headers") { | 203 generate_jni("base_unittests_jni_headers") { |
188 sources = [ | 204 sources = [ |
189 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 205 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
190 ] | 206 ] |
191 jni_package = "base" | 207 jni_package = "base" |
192 } | 208 } |
193 } | 209 } |
OLD | NEW |