| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 "logging.cc", | 264 "logging.cc", |
| 265 "logging.h", | 265 "logging.h", |
| 266 "logging_win.cc", | 266 "logging_win.cc", |
| 267 "logging_win.h", | 267 "logging_win.h", |
| 268 "mac/authorization_util.h", | 268 "mac/authorization_util.h", |
| 269 "mac/authorization_util.mm", | 269 "mac/authorization_util.mm", |
| 270 "mac/bind_objc_block.h", | 270 "mac/bind_objc_block.h", |
| 271 "mac/bundle_locations.h", | 271 "mac/bundle_locations.h", |
| 272 "mac/bundle_locations.mm", | 272 "mac/bundle_locations.mm", |
| 273 "mac/cocoa_protocols.h", | 273 "mac/cocoa_protocols.h", |
| 274 "mac/dispatch_source_mach.cc", |
| 275 "mac/dispatch_source_mach.h", |
| 274 "mac/foundation_util.h", | 276 "mac/foundation_util.h", |
| 275 "mac/foundation_util.mm", | 277 "mac/foundation_util.mm", |
| 276 "mac/launch_services_util.cc", | 278 "mac/launch_services_util.cc", |
| 277 "mac/launch_services_util.h", | 279 "mac/launch_services_util.h", |
| 278 "mac/launchd.cc", | 280 "mac/launchd.cc", |
| 279 "mac/launchd.h", | 281 "mac/launchd.h", |
| 280 "mac/libdispatch_task_runner.cc", | 282 "mac/libdispatch_task_runner.cc", |
| 281 "mac/libdispatch_task_runner.h", | 283 "mac/libdispatch_task_runner.h", |
| 282 "mac/mac_logging.cc", | 284 "mac/mac_logging.cc", |
| 283 "mac/mac_logging.h", | 285 "mac/mac_logging.h", |
| (...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 "ios/weak_nsobject_unittest.mm", | 1145 "ios/weak_nsobject_unittest.mm", |
| 1144 "json/json_parser_unittest.cc", | 1146 "json/json_parser_unittest.cc", |
| 1145 "json/json_reader_unittest.cc", | 1147 "json/json_reader_unittest.cc", |
| 1146 "json/json_value_converter_unittest.cc", | 1148 "json/json_value_converter_unittest.cc", |
| 1147 "json/json_value_serializer_unittest.cc", | 1149 "json/json_value_serializer_unittest.cc", |
| 1148 "json/json_writer_unittest.cc", | 1150 "json/json_writer_unittest.cc", |
| 1149 "json/string_escape_unittest.cc", | 1151 "json/string_escape_unittest.cc", |
| 1150 "lazy_instance_unittest.cc", | 1152 "lazy_instance_unittest.cc", |
| 1151 "logging_unittest.cc", | 1153 "logging_unittest.cc", |
| 1152 "mac/bind_objc_block_unittest.mm", | 1154 "mac/bind_objc_block_unittest.mm", |
| 1155 "mac/dispatch_source_mach_unittest.cc", |
| 1153 "mac/foundation_util_unittest.mm", | 1156 "mac/foundation_util_unittest.mm", |
| 1154 "mac/libdispatch_task_runner_unittest.cc", | 1157 "mac/libdispatch_task_runner_unittest.cc", |
| 1155 "mac/mac_util_unittest.mm", | 1158 "mac/mac_util_unittest.mm", |
| 1156 "mac/objc_property_releaser_unittest.mm", | 1159 "mac/objc_property_releaser_unittest.mm", |
| 1157 "mac/scoped_nsobject_unittest.mm", | 1160 "mac/scoped_nsobject_unittest.mm", |
| 1158 "mac/scoped_objc_class_swizzler_unittest.mm", | 1161 "mac/scoped_objc_class_swizzler_unittest.mm", |
| 1159 "mac/scoped_sending_event_unittest.mm", | 1162 "mac/scoped_sending_event_unittest.mm", |
| 1160 "md5_unittest.cc", | 1163 "md5_unittest.cc", |
| 1161 "memory/aligned_memory_unittest.cc", | 1164 "memory/aligned_memory_unittest.cc", |
| 1162 "memory/discardable_shared_memory_unittest.cc", | 1165 "memory/discardable_shared_memory_unittest.cc", |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 | 1506 |
| 1504 # GYP: //base.gyp:base_java_unittest_support | 1507 # GYP: //base.gyp:base_java_unittest_support |
| 1505 android_library("base_java_unittest_support") { | 1508 android_library("base_java_unittest_support") { |
| 1506 deps = [ | 1509 deps = [ |
| 1507 ":base_java", | 1510 ":base_java", |
| 1508 ] | 1511 ] |
| 1509 java_files = | 1512 java_files = |
| 1510 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1513 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1511 } | 1514 } |
| 1512 } | 1515 } |
| OLD | NEW |