| 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 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1207 "synchronization/lock_unittest.cc", | 1207 "synchronization/lock_unittest.cc", |
| 1208 "synchronization/waitable_event_unittest.cc", | 1208 "synchronization/waitable_event_unittest.cc", |
| 1209 "synchronization/waitable_event_watcher_unittest.cc", | 1209 "synchronization/waitable_event_watcher_unittest.cc", |
| 1210 "sys_info_unittest.cc", | 1210 "sys_info_unittest.cc", |
| 1211 "system_monitor/system_monitor_unittest.cc", | 1211 "system_monitor/system_monitor_unittest.cc", |
| 1212 "task/cancelable_task_tracker_unittest.cc", | 1212 "task/cancelable_task_tracker_unittest.cc", |
| 1213 "task_runner_util_unittest.cc", | 1213 "task_runner_util_unittest.cc", |
| 1214 "template_util_unittest.cc", | 1214 "template_util_unittest.cc", |
| 1215 "test/expectations/expectation_unittest.cc", | 1215 "test/expectations/expectation_unittest.cc", |
| 1216 "test/expectations/parser_unittest.cc", | 1216 "test/expectations/parser_unittest.cc", |
| 1217 "test/statistics_delta_reader_unittest.cc", | 1217 "test/histogram_tester_unittest.cc", |
| 1218 "test/test_reg_util_win_unittest.cc", | 1218 "test/test_reg_util_win_unittest.cc", |
| 1219 "test/trace_event_analyzer_unittest.cc", | 1219 "test/trace_event_analyzer_unittest.cc", |
| 1220 "threading/non_thread_safe_unittest.cc", | 1220 "threading/non_thread_safe_unittest.cc", |
| 1221 "threading/platform_thread_unittest.cc", | 1221 "threading/platform_thread_unittest.cc", |
| 1222 "threading/sequenced_worker_pool_unittest.cc", | 1222 "threading/sequenced_worker_pool_unittest.cc", |
| 1223 "threading/simple_thread_unittest.cc", | 1223 "threading/simple_thread_unittest.cc", |
| 1224 "threading/thread_checker_unittest.cc", | 1224 "threading/thread_checker_unittest.cc", |
| 1225 "threading/thread_collision_warner_unittest.cc", | 1225 "threading/thread_collision_warner_unittest.cc", |
| 1226 "threading/thread_id_name_manager_unittest.cc", | 1226 "threading/thread_id_name_manager_unittest.cc", |
| 1227 "threading/thread_local_storage_unittest.cc", | 1227 "threading/thread_local_storage_unittest.cc", |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1449 | 1449 |
| 1450 unittest_apk("base_unittests_apk") { | 1450 unittest_apk("base_unittests_apk") { |
| 1451 deps = [ | 1451 deps = [ |
| 1452 ":base_java", | 1452 ":base_java", |
| 1453 ":base_java_unittest_support", | 1453 ":base_java_unittest_support", |
| 1454 ":base_unittests", | 1454 ":base_unittests", |
| 1455 ] | 1455 ] |
| 1456 unittests_dep = ":base_unittests" | 1456 unittests_dep = ":base_unittests" |
| 1457 } | 1457 } |
| 1458 } | 1458 } |
| OLD | NEW |