| 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 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1216 "synchronization/lock_unittest.cc", | 1216 "synchronization/lock_unittest.cc", |
| 1217 "synchronization/waitable_event_unittest.cc", | 1217 "synchronization/waitable_event_unittest.cc", |
| 1218 "synchronization/waitable_event_watcher_unittest.cc", | 1218 "synchronization/waitable_event_watcher_unittest.cc", |
| 1219 "sys_info_unittest.cc", | 1219 "sys_info_unittest.cc", |
| 1220 "system_monitor/system_monitor_unittest.cc", | 1220 "system_monitor/system_monitor_unittest.cc", |
| 1221 "task/cancelable_task_tracker_unittest.cc", | 1221 "task/cancelable_task_tracker_unittest.cc", |
| 1222 "task_runner_util_unittest.cc", | 1222 "task_runner_util_unittest.cc", |
| 1223 "template_util_unittest.cc", | 1223 "template_util_unittest.cc", |
| 1224 "test/expectations/expectation_unittest.cc", | 1224 "test/expectations/expectation_unittest.cc", |
| 1225 "test/expectations/parser_unittest.cc", | 1225 "test/expectations/parser_unittest.cc", |
| 1226 "test/statistics_delta_reader_unittest.cc", | 1226 "test/histogram_tester_unittest.cc", |
| 1227 "test/test_reg_util_win_unittest.cc", | 1227 "test/test_reg_util_win_unittest.cc", |
| 1228 "test/trace_event_analyzer_unittest.cc", | 1228 "test/trace_event_analyzer_unittest.cc", |
| 1229 "threading/non_thread_safe_unittest.cc", | 1229 "threading/non_thread_safe_unittest.cc", |
| 1230 "threading/platform_thread_unittest.cc", | 1230 "threading/platform_thread_unittest.cc", |
| 1231 "threading/sequenced_worker_pool_unittest.cc", | 1231 "threading/sequenced_worker_pool_unittest.cc", |
| 1232 "threading/simple_thread_unittest.cc", | 1232 "threading/simple_thread_unittest.cc", |
| 1233 "threading/thread_checker_unittest.cc", | 1233 "threading/thread_checker_unittest.cc", |
| 1234 "threading/thread_collision_warner_unittest.cc", | 1234 "threading/thread_collision_warner_unittest.cc", |
| 1235 "threading/thread_id_name_manager_unittest.cc", | 1235 "threading/thread_id_name_manager_unittest.cc", |
| 1236 "threading/thread_local_storage_unittest.cc", | 1236 "threading/thread_local_storage_unittest.cc", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1454 | 1454 |
| 1455 unittest_apk("base_unittests_apk") { | 1455 unittest_apk("base_unittests_apk") { |
| 1456 deps = [ | 1456 deps = [ |
| 1457 ":base_java", | 1457 ":base_java", |
| 1458 ":base_java_unittest_support", | 1458 ":base_java_unittest_support", |
| 1459 ":base_unittests", | 1459 ":base_unittests", |
| 1460 ] | 1460 ] |
| 1461 unittests_dep = ":base_unittests" | 1461 unittests_dep = ":base_unittests" |
| 1462 } | 1462 } |
| 1463 } | 1463 } |
| OLD | NEW |