| 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 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 "cancelable_callback_unittest.cc", | 1141 "cancelable_callback_unittest.cc", |
| 1142 "command_line_unittest.cc", | 1142 "command_line_unittest.cc", |
| 1143 "containers/adapters_unittest.cc", | 1143 "containers/adapters_unittest.cc", |
| 1144 "containers/hash_tables_unittest.cc", | 1144 "containers/hash_tables_unittest.cc", |
| 1145 "containers/linked_list_unittest.cc", | 1145 "containers/linked_list_unittest.cc", |
| 1146 "containers/mru_cache_unittest.cc", | 1146 "containers/mru_cache_unittest.cc", |
| 1147 "containers/small_map_unittest.cc", | 1147 "containers/small_map_unittest.cc", |
| 1148 "containers/stack_container_unittest.cc", | 1148 "containers/stack_container_unittest.cc", |
| 1149 "cpu_unittest.cc", | 1149 "cpu_unittest.cc", |
| 1150 "debug/crash_logging_unittest.cc", | 1150 "debug/crash_logging_unittest.cc", |
| 1151 "debug/debugger_unittest.cc", |
| 1151 "debug/leak_tracker_unittest.cc", | 1152 "debug/leak_tracker_unittest.cc", |
| 1152 "debug/proc_maps_linux_unittest.cc", | 1153 "debug/proc_maps_linux_unittest.cc", |
| 1153 "debug/stack_trace_unittest.cc", | 1154 "debug/stack_trace_unittest.cc", |
| 1154 "debug/task_annotator_unittest.cc", | 1155 "debug/task_annotator_unittest.cc", |
| 1155 "debug/trace_event_argument_unittest.cc", | 1156 "debug/trace_event_argument_unittest.cc", |
| 1156 "debug/trace_event_memory_unittest.cc", | 1157 "debug/trace_event_memory_unittest.cc", |
| 1157 "debug/trace_event_synthetic_delay_unittest.cc", | 1158 "debug/trace_event_synthetic_delay_unittest.cc", |
| 1158 "debug/trace_event_system_stats_monitor_unittest.cc", | 1159 "debug/trace_event_system_stats_monitor_unittest.cc", |
| 1159 "debug/trace_event_unittest.cc", | 1160 "debug/trace_event_unittest.cc", |
| 1160 "debug/trace_event_unittest.h", | 1161 "debug/trace_event_unittest.h", |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1516 # GYP: //base.gyp:base_unittests_apk | 1517 # GYP: //base.gyp:base_unittests_apk |
| 1517 unittest_apk("base_unittests_apk") { | 1518 unittest_apk("base_unittests_apk") { |
| 1518 deps = [ | 1519 deps = [ |
| 1519 ":base_java", | 1520 ":base_java", |
| 1520 ":base_java_unittest_support", | 1521 ":base_java_unittest_support", |
| 1521 ":base_unittests", | 1522 ":base_unittests", |
| 1522 ] | 1523 ] |
| 1523 unittests_dep = ":base_unittests" | 1524 unittests_dep = ":base_unittests" |
| 1524 } | 1525 } |
| 1525 } | 1526 } |
| OLD | NEW |