| 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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 "nix/mime_util_xdg.cc", | 349 "nix/mime_util_xdg.cc", |
| 350 "nix/mime_util_xdg.h", | 350 "nix/mime_util_xdg.h", |
| 351 "nix/xdg_util.cc", | 351 "nix/xdg_util.cc", |
| 352 "nix/xdg_util.h", | 352 "nix/xdg_util.h", |
| 353 "numerics/safe_conversions.h", | 353 "numerics/safe_conversions.h", |
| 354 "numerics/safe_conversions_impl.h", | 354 "numerics/safe_conversions_impl.h", |
| 355 "numerics/safe_math.h", | 355 "numerics/safe_math.h", |
| 356 "numerics/safe_math_impl.h", | 356 "numerics/safe_math_impl.h", |
| 357 "observer_list.h", | 357 "observer_list.h", |
| 358 "observer_list_threadsafe.h", | 358 "observer_list_threadsafe.h", |
| 359 "optional.h", |
| 359 "os_compat_android.cc", | 360 "os_compat_android.cc", |
| 360 "os_compat_android.h", | 361 "os_compat_android.h", |
| 361 "os_compat_nacl.cc", | 362 "os_compat_nacl.cc", |
| 362 "os_compat_nacl.h", | 363 "os_compat_nacl.h", |
| 363 "path_service.cc", | 364 "path_service.cc", |
| 364 "path_service.h", | 365 "path_service.h", |
| 365 "pending_task.cc", | 366 "pending_task.cc", |
| 366 "pending_task.h", | 367 "pending_task.h", |
| 367 "pickle.cc", | 368 "pickle.cc", |
| 368 "pickle.h", | 369 "pickle.h", |
| (...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1321 "metrics/histogram_macros_unittest.cc", | 1322 "metrics/histogram_macros_unittest.cc", |
| 1322 "metrics/histogram_snapshot_manager_unittest.cc", | 1323 "metrics/histogram_snapshot_manager_unittest.cc", |
| 1323 "metrics/histogram_unittest.cc", | 1324 "metrics/histogram_unittest.cc", |
| 1324 "metrics/sample_map_unittest.cc", | 1325 "metrics/sample_map_unittest.cc", |
| 1325 "metrics/sample_vector_unittest.cc", | 1326 "metrics/sample_vector_unittest.cc", |
| 1326 "metrics/sparse_histogram_unittest.cc", | 1327 "metrics/sparse_histogram_unittest.cc", |
| 1327 "metrics/statistics_recorder_unittest.cc", | 1328 "metrics/statistics_recorder_unittest.cc", |
| 1328 "move_unittest.cc", | 1329 "move_unittest.cc", |
| 1329 "numerics/safe_numerics_unittest.cc", | 1330 "numerics/safe_numerics_unittest.cc", |
| 1330 "observer_list_unittest.cc", | 1331 "observer_list_unittest.cc", |
| 1332 "optional_unittest.cc", |
| 1331 "os_compat_android_unittest.cc", | 1333 "os_compat_android_unittest.cc", |
| 1332 "path_service_unittest.cc", | 1334 "path_service_unittest.cc", |
| 1333 "pickle_unittest.cc", | 1335 "pickle_unittest.cc", |
| 1334 "posix/file_descriptor_shuffle_unittest.cc", | 1336 "posix/file_descriptor_shuffle_unittest.cc", |
| 1335 "posix/unix_domain_socket_linux_unittest.cc", | 1337 "posix/unix_domain_socket_linux_unittest.cc", |
| 1336 "power_monitor/power_monitor_unittest.cc", | 1338 "power_monitor/power_monitor_unittest.cc", |
| 1337 "prefs/default_pref_store_unittest.cc", | 1339 "prefs/default_pref_store_unittest.cc", |
| 1338 "prefs/json_pref_store_unittest.cc", | 1340 "prefs/json_pref_store_unittest.cc", |
| 1339 "prefs/overlay_user_pref_store_unittest.cc", | 1341 "prefs/overlay_user_pref_store_unittest.cc", |
| 1340 "prefs/pref_change_registrar_unittest.cc", | 1342 "prefs/pref_change_registrar_unittest.cc", |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 | 1688 |
| 1687 # GYP: //base.gyp:base_java_unittest_support | 1689 # GYP: //base.gyp:base_java_unittest_support |
| 1688 android_library("base_java_unittest_support") { | 1690 android_library("base_java_unittest_support") { |
| 1689 deps = [ | 1691 deps = [ |
| 1690 ":base_java", | 1692 ":base_java", |
| 1691 ] | 1693 ] |
| 1692 java_files = | 1694 java_files = |
| 1693 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1695 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1694 } | 1696 } |
| 1695 } | 1697 } |
| OLD | NEW |