| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 "path_service.h", | 364 "path_service.h", |
| 365 "pending_task.cc", | 365 "pending_task.cc", |
| 366 "pending_task.h", | 366 "pending_task.h", |
| 367 "pickle.cc", | 367 "pickle.cc", |
| 368 "pickle.h", | 368 "pickle.h", |
| 369 "port.h", | 369 "port.h", |
| 370 "posix/eintr_wrapper.h", | 370 "posix/eintr_wrapper.h", |
| 371 "posix/file_descriptor_shuffle.cc", | 371 "posix/file_descriptor_shuffle.cc", |
| 372 "posix/global_descriptors.cc", | 372 "posix/global_descriptors.cc", |
| 373 "posix/global_descriptors.h", | 373 "posix/global_descriptors.h", |
| 374 "posix/safe_strerror.cc", |
| 375 "posix/safe_strerror.h", |
| 374 "posix/unix_domain_socket_linux.cc", | 376 "posix/unix_domain_socket_linux.cc", |
| 375 "posix/unix_domain_socket_linux.h", | 377 "posix/unix_domain_socket_linux.h", |
| 376 "power_monitor/power_monitor.cc", | 378 "power_monitor/power_monitor.cc", |
| 377 "power_monitor/power_monitor.h", | 379 "power_monitor/power_monitor.h", |
| 378 "power_monitor/power_monitor_device_source.cc", | 380 "power_monitor/power_monitor_device_source.cc", |
| 379 "power_monitor/power_monitor_device_source.h", | 381 "power_monitor/power_monitor_device_source.h", |
| 380 "power_monitor/power_monitor_device_source_android.cc", | 382 "power_monitor/power_monitor_device_source_android.cc", |
| 381 "power_monitor/power_monitor_device_source_android.h", | 383 "power_monitor/power_monitor_device_source_android.h", |
| 382 "power_monitor/power_monitor_device_source_chromeos.cc", | 384 "power_monitor/power_monitor_device_source_chromeos.cc", |
| 383 "power_monitor/power_monitor_device_source_ios.mm", | 385 "power_monitor/power_monitor_device_source_ios.mm", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 401 "profiler/stack_sampling_profiler_win.cc", | 403 "profiler/stack_sampling_profiler_win.cc", |
| 402 "profiler/tracked_time.cc", | 404 "profiler/tracked_time.cc", |
| 403 "profiler/tracked_time.h", | 405 "profiler/tracked_time.h", |
| 404 "rand_util.cc", | 406 "rand_util.cc", |
| 405 "rand_util.h", | 407 "rand_util.h", |
| 406 "rand_util_nacl.cc", | 408 "rand_util_nacl.cc", |
| 407 "rand_util_posix.cc", | 409 "rand_util_posix.cc", |
| 408 "rand_util_win.cc", | 410 "rand_util_win.cc", |
| 409 "run_loop.cc", | 411 "run_loop.cc", |
| 410 "run_loop.h", | 412 "run_loop.h", |
| 411 "safe_strerror_posix.cc", | |
| 412 "safe_strerror_posix.h", | |
| 413 "scoped_generic.h", | 413 "scoped_generic.h", |
| 414 "scoped_native_library.cc", | 414 "scoped_native_library.cc", |
| 415 "scoped_native_library.h", | 415 "scoped_native_library.h", |
| 416 "scoped_observer.h", | 416 "scoped_observer.h", |
| 417 "sequence_checker.h", | 417 "sequence_checker.h", |
| 418 "sequence_checker_impl.cc", | 418 "sequence_checker_impl.cc", |
| 419 "sequence_checker_impl.h", | 419 "sequence_checker_impl.h", |
| 420 "sequenced_task_runner.cc", | 420 "sequenced_task_runner.cc", |
| 421 "sequenced_task_runner.h", | 421 "sequenced_task_runner.h", |
| 422 "sequenced_task_runner_helpers.h", | 422 "sequenced_task_runner_helpers.h", |
| (...skipping 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1511 | 1511 |
| 1512 # GYP: //base.gyp:base_java_unittest_support | 1512 # GYP: //base.gyp:base_java_unittest_support |
| 1513 android_library("base_java_unittest_support") { | 1513 android_library("base_java_unittest_support") { |
| 1514 deps = [ | 1514 deps = [ |
| 1515 ":base_java", | 1515 ":base_java", |
| 1516 ] | 1516 ] |
| 1517 java_files = | 1517 java_files = |
| 1518 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1518 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1519 } | 1519 } |
| 1520 } | 1520 } |
| OLD | NEW |