| 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 "process/process_metrics_ios.cc", | 501 "process/process_metrics_ios.cc", |
| 502 "process/process_metrics_linux.cc", | 502 "process/process_metrics_linux.cc", |
| 503 "process/process_metrics_mac.cc", | 503 "process/process_metrics_mac.cc", |
| 504 "process/process_metrics_openbsd.cc", | 504 "process/process_metrics_openbsd.cc", |
| 505 "process/process_metrics_posix.cc", | 505 "process/process_metrics_posix.cc", |
| 506 "process/process_metrics_win.cc", | 506 "process/process_metrics_win.cc", |
| 507 "process/process_posix.cc", | 507 "process/process_posix.cc", |
| 508 "process/process_win.cc", | 508 "process/process_win.cc", |
| 509 "profiler/alternate_timer.cc", | 509 "profiler/alternate_timer.cc", |
| 510 "profiler/alternate_timer.h", | 510 "profiler/alternate_timer.h", |
| 511 "profiler/cpu_profiler.cc", |
| 512 "profiler/cpu_profiler.h", |
| 513 "profiler/cpu_profiler_posix.cc", |
| 514 "profiler/cpu_profiler_win.cc", |
| 511 "profiler/scoped_profile.cc", | 515 "profiler/scoped_profile.cc", |
| 512 "profiler/scoped_profile.h", | 516 "profiler/scoped_profile.h", |
| 513 "profiler/scoped_tracker.cc", | 517 "profiler/scoped_tracker.cc", |
| 514 "profiler/scoped_tracker.h", | 518 "profiler/scoped_tracker.h", |
| 515 "profiler/tracked_time.cc", | 519 "profiler/tracked_time.cc", |
| 516 "profiler/tracked_time.h", | 520 "profiler/tracked_time.h", |
| 517 "rand_util.cc", | 521 "rand_util.cc", |
| 518 "rand_util.h", | 522 "rand_util.h", |
| 519 "rand_util_nacl.cc", | 523 "rand_util_nacl.cc", |
| 520 "rand_util_posix.cc", | 524 "rand_util_posix.cc", |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1537 | 1541 |
| 1538 # GYP: //base.gyp:base_java_unittest_support | 1542 # GYP: //base.gyp:base_java_unittest_support |
| 1539 android_library("base_java_unittest_support") { | 1543 android_library("base_java_unittest_support") { |
| 1540 deps = [ | 1544 deps = [ |
| 1541 ":base_java", | 1545 ":base_java", |
| 1542 ] | 1546 ] |
| 1543 java_files = | 1547 java_files = |
| 1544 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1548 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1545 } | 1549 } |
| 1546 } | 1550 } |
| OLD | NEW |