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