| 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 "process/process_metrics_posix.cc", | 500 "process/process_metrics_posix.cc", |
| 501 "process/process_metrics_win.cc", | 501 "process/process_metrics_win.cc", |
| 502 "process/process_posix.cc", | 502 "process/process_posix.cc", |
| 503 "process/process_win.cc", | 503 "process/process_win.cc", |
| 504 "profiler/alternate_timer.cc", | 504 "profiler/alternate_timer.cc", |
| 505 "profiler/alternate_timer.h", | 505 "profiler/alternate_timer.h", |
| 506 "profiler/scoped_profile.cc", | 506 "profiler/scoped_profile.cc", |
| 507 "profiler/scoped_profile.h", | 507 "profiler/scoped_profile.h", |
| 508 "profiler/scoped_tracker.cc", | 508 "profiler/scoped_tracker.cc", |
| 509 "profiler/scoped_tracker.h", | 509 "profiler/scoped_tracker.h", |
| 510 "profiler/stack_sampling_profiler.cc", |
| 511 "profiler/stack_sampling_profiler.h", |
| 512 "profiler/stack_sampling_profiler_posix.cc", |
| 513 "profiler/stack_sampling_profiler_win.cc", |
| 510 "profiler/tracked_time.cc", | 514 "profiler/tracked_time.cc", |
| 511 "profiler/tracked_time.h", | 515 "profiler/tracked_time.h", |
| 512 "rand_util.cc", | 516 "rand_util.cc", |
| 513 "rand_util.h", | 517 "rand_util.h", |
| 514 "rand_util_nacl.cc", | 518 "rand_util_nacl.cc", |
| 515 "rand_util_posix.cc", | 519 "rand_util_posix.cc", |
| 516 "rand_util_win.cc", | 520 "rand_util_win.cc", |
| 517 "run_loop.cc", | 521 "run_loop.cc", |
| 518 "run_loop.h", | 522 "run_loop.h", |
| 519 "safe_strerror_posix.cc", | 523 "safe_strerror_posix.cc", |
| (...skipping 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1594 | 1598 |
| 1595 # GYP: //base.gyp:base_java_unittest_support | 1599 # GYP: //base.gyp:base_java_unittest_support |
| 1596 android_library("base_java_unittest_support") { | 1600 android_library("base_java_unittest_support") { |
| 1597 deps = [ | 1601 deps = [ |
| 1598 ":base_java", | 1602 ":base_java", |
| 1599 ] | 1603 ] |
| 1600 java_files = | 1604 java_files = |
| 1601 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1605 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1602 } | 1606 } |
| 1603 } | 1607 } |
| OLD | NEW |