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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 "mac/scoped_launch_data.h", | 293 "mac/scoped_launch_data.h", |
294 "mac/scoped_mach_port.cc", | 294 "mac/scoped_mach_port.cc", |
295 "mac/scoped_mach_port.h", | 295 "mac/scoped_mach_port.h", |
296 "mac/scoped_mach_vm.cc", | 296 "mac/scoped_mach_vm.cc", |
297 "mac/scoped_mach_vm.h", | 297 "mac/scoped_mach_vm.h", |
298 "mac/scoped_nsautorelease_pool.h", | 298 "mac/scoped_nsautorelease_pool.h", |
299 "mac/scoped_nsautorelease_pool.mm", | 299 "mac/scoped_nsautorelease_pool.mm", |
300 "mac/scoped_nsexception_enabler.h", | 300 "mac/scoped_nsexception_enabler.h", |
301 "mac/scoped_nsexception_enabler.mm", | 301 "mac/scoped_nsexception_enabler.mm", |
302 "mac/scoped_nsobject.h", | 302 "mac/scoped_nsobject.h", |
| 303 "mac/scoped_objc_class_swizzler.h", |
| 304 "mac/scoped_objc_class_swizzler.mm", |
303 "mac/scoped_sending_event.h", | 305 "mac/scoped_sending_event.h", |
304 "mac/scoped_sending_event.mm", | 306 "mac/scoped_sending_event.mm", |
305 "mac/sdk_forward_declarations.h", | 307 "mac/sdk_forward_declarations.h", |
306 "macros.h", | 308 "macros.h", |
307 "md5.cc", | 309 "md5.cc", |
308 "md5.h", | 310 "md5.h", |
309 "memory/aligned_memory.cc", | 311 "memory/aligned_memory.cc", |
310 "memory/aligned_memory.h", | 312 "memory/aligned_memory.h", |
311 "memory/discardable_memory.cc", | 313 "memory/discardable_memory.cc", |
312 "memory/discardable_memory.h", | 314 "memory/discardable_memory.h", |
(...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1114 "json/json_writer_unittest.cc", | 1116 "json/json_writer_unittest.cc", |
1115 "json/string_escape_unittest.cc", | 1117 "json/string_escape_unittest.cc", |
1116 "lazy_instance_unittest.cc", | 1118 "lazy_instance_unittest.cc", |
1117 "logging_unittest.cc", | 1119 "logging_unittest.cc", |
1118 "mac/bind_objc_block_unittest.mm", | 1120 "mac/bind_objc_block_unittest.mm", |
1119 "mac/foundation_util_unittest.mm", | 1121 "mac/foundation_util_unittest.mm", |
1120 "mac/libdispatch_task_runner_unittest.cc", | 1122 "mac/libdispatch_task_runner_unittest.cc", |
1121 "mac/mac_util_unittest.mm", | 1123 "mac/mac_util_unittest.mm", |
1122 "mac/objc_property_releaser_unittest.mm", | 1124 "mac/objc_property_releaser_unittest.mm", |
1123 "mac/scoped_nsobject_unittest.mm", | 1125 "mac/scoped_nsobject_unittest.mm", |
| 1126 "mac/scoped_objc_class_swizzler_unittest.mm", |
1124 "mac/scoped_sending_event_unittest.mm", | 1127 "mac/scoped_sending_event_unittest.mm", |
1125 "md5_unittest.cc", | 1128 "md5_unittest.cc", |
1126 "memory/aligned_memory_unittest.cc", | 1129 "memory/aligned_memory_unittest.cc", |
1127 "memory/discardable_memory_manager_unittest.cc", | 1130 "memory/discardable_memory_manager_unittest.cc", |
1128 "memory/discardable_memory_unittest.cc", | 1131 "memory/discardable_memory_unittest.cc", |
1129 "memory/linked_ptr_unittest.cc", | 1132 "memory/linked_ptr_unittest.cc", |
1130 "memory/ref_counted_memory_unittest.cc", | 1133 "memory/ref_counted_memory_unittest.cc", |
1131 "memory/ref_counted_unittest.cc", | 1134 "memory/ref_counted_unittest.cc", |
1132 "memory/scoped_ptr_unittest.cc", | 1135 "memory/scoped_ptr_unittest.cc", |
1133 "memory/scoped_ptr_unittest.nc", | 1136 "memory/scoped_ptr_unittest.nc", |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1449 | 1452 |
1450 unittest_apk("base_unittests_apk") { | 1453 unittest_apk("base_unittests_apk") { |
1451 deps = [ | 1454 deps = [ |
1452 ":base_java", | 1455 ":base_java", |
1453 ":base_java_unittest_support", | 1456 ":base_java_unittest_support", |
1454 ":base_unittests", | 1457 ":base_unittests", |
1455 ] | 1458 ] |
1456 unittests_dep = ":base_unittests" | 1459 unittests_dep = ":base_unittests" |
1457 } | 1460 } |
1458 } | 1461 } |
OLD | NEW |