| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "nix/mime_util_xdg.cc", | 351 "nix/mime_util_xdg.cc", |
| 352 "nix/mime_util_xdg.h", | 352 "nix/mime_util_xdg.h", |
| 353 "nix/xdg_util.cc", | 353 "nix/xdg_util.cc", |
| 354 "nix/xdg_util.h", | 354 "nix/xdg_util.h", |
| 355 "numerics/safe_conversions.h", | 355 "numerics/safe_conversions.h", |
| 356 "numerics/safe_conversions_impl.h", | 356 "numerics/safe_conversions_impl.h", |
| 357 "numerics/safe_math.h", | 357 "numerics/safe_math.h", |
| 358 "numerics/safe_math_impl.h", | 358 "numerics/safe_math_impl.h", |
| 359 "observer_list.h", | 359 "observer_list.h", |
| 360 "observer_list_threadsafe.h", | 360 "observer_list_threadsafe.h", |
| 361 "optional.h", |
| 361 "os_compat_android.cc", | 362 "os_compat_android.cc", |
| 362 "os_compat_android.h", | 363 "os_compat_android.h", |
| 363 "os_compat_nacl.cc", | 364 "os_compat_nacl.cc", |
| 364 "os_compat_nacl.h", | 365 "os_compat_nacl.h", |
| 365 "path_service.cc", | 366 "path_service.cc", |
| 366 "path_service.h", | 367 "path_service.h", |
| 367 "pending_task.cc", | 368 "pending_task.cc", |
| 368 "pending_task.h", | 369 "pending_task.h", |
| 369 "pickle.cc", | 370 "pickle.cc", |
| 370 "pickle.h", | 371 "pickle.h", |
| (...skipping 944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1315 "metrics/histogram_macros_unittest.cc", | 1316 "metrics/histogram_macros_unittest.cc", |
| 1316 "metrics/histogram_snapshot_manager_unittest.cc", | 1317 "metrics/histogram_snapshot_manager_unittest.cc", |
| 1317 "metrics/histogram_unittest.cc", | 1318 "metrics/histogram_unittest.cc", |
| 1318 "metrics/sample_map_unittest.cc", | 1319 "metrics/sample_map_unittest.cc", |
| 1319 "metrics/sample_vector_unittest.cc", | 1320 "metrics/sample_vector_unittest.cc", |
| 1320 "metrics/sparse_histogram_unittest.cc", | 1321 "metrics/sparse_histogram_unittest.cc", |
| 1321 "metrics/statistics_recorder_unittest.cc", | 1322 "metrics/statistics_recorder_unittest.cc", |
| 1322 "move_unittest.cc", | 1323 "move_unittest.cc", |
| 1323 "numerics/safe_numerics_unittest.cc", | 1324 "numerics/safe_numerics_unittest.cc", |
| 1324 "observer_list_unittest.cc", | 1325 "observer_list_unittest.cc", |
| 1326 "optional_unittest.cc", |
| 1325 "os_compat_android_unittest.cc", | 1327 "os_compat_android_unittest.cc", |
| 1326 "path_service_unittest.cc", | 1328 "path_service_unittest.cc", |
| 1327 "pickle_unittest.cc", | 1329 "pickle_unittest.cc", |
| 1328 "posix/file_descriptor_shuffle_unittest.cc", | 1330 "posix/file_descriptor_shuffle_unittest.cc", |
| 1329 "posix/unix_domain_socket_linux_unittest.cc", | 1331 "posix/unix_domain_socket_linux_unittest.cc", |
| 1330 "power_monitor/power_monitor_unittest.cc", | 1332 "power_monitor/power_monitor_unittest.cc", |
| 1331 "prefs/default_pref_store_unittest.cc", | 1333 "prefs/default_pref_store_unittest.cc", |
| 1332 "prefs/json_pref_store_unittest.cc", | 1334 "prefs/json_pref_store_unittest.cc", |
| 1333 "prefs/overlay_user_pref_store_unittest.cc", | 1335 "prefs/overlay_user_pref_store_unittest.cc", |
| 1334 "prefs/pref_change_registrar_unittest.cc", | 1336 "prefs/pref_change_registrar_unittest.cc", |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1655 | 1657 |
| 1656 # GYP: //base.gyp:base_java_unittest_support | 1658 # GYP: //base.gyp:base_java_unittest_support |
| 1657 android_library("base_java_unittest_support") { | 1659 android_library("base_java_unittest_support") { |
| 1658 deps = [ | 1660 deps = [ |
| 1659 ":base_java", | 1661 ":base_java", |
| 1660 ] | 1662 ] |
| 1661 java_files = | 1663 java_files = |
| 1662 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1664 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1663 } | 1665 } |
| 1664 } | 1666 } |
| OLD | NEW |