| 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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 "process/process_metrics_ios.cc", | 510 "process/process_metrics_ios.cc", |
| 511 "process/process_metrics_linux.cc", | 511 "process/process_metrics_linux.cc", |
| 512 "process/process_metrics_mac.cc", | 512 "process/process_metrics_mac.cc", |
| 513 "process/process_metrics_openbsd.cc", | 513 "process/process_metrics_openbsd.cc", |
| 514 "process/process_metrics_posix.cc", | 514 "process/process_metrics_posix.cc", |
| 515 "process/process_metrics_win.cc", | 515 "process/process_metrics_win.cc", |
| 516 "process/process_posix.cc", | 516 "process/process_posix.cc", |
| 517 "process/process_win.cc", | 517 "process/process_win.cc", |
| 518 "profiler/alternate_timer.cc", | 518 "profiler/alternate_timer.cc", |
| 519 "profiler/alternate_timer.h", | 519 "profiler/alternate_timer.h", |
| 520 "profiler/cpu_profiler.cc", | |
| 521 "profiler/cpu_profiler.h", | |
| 522 "profiler/cpu_profiler_posix.cc", | |
| 523 "profiler/cpu_profiler_win.cc", | |
| 524 "profiler/scoped_profile.cc", | 520 "profiler/scoped_profile.cc", |
| 525 "profiler/scoped_profile.h", | 521 "profiler/scoped_profile.h", |
| 526 "profiler/scoped_tracker.cc", | 522 "profiler/scoped_tracker.cc", |
| 527 "profiler/scoped_tracker.h", | 523 "profiler/scoped_tracker.h", |
| 528 "profiler/tracked_time.cc", | 524 "profiler/tracked_time.cc", |
| 529 "profiler/tracked_time.h", | 525 "profiler/tracked_time.h", |
| 530 "rand_util.cc", | 526 "rand_util.cc", |
| 531 "rand_util.h", | 527 "rand_util.h", |
| 532 "rand_util_nacl.cc", | 528 "rand_util_nacl.cc", |
| 533 "rand_util_posix.cc", | 529 "rand_util_posix.cc", |
| (...skipping 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1535 | 1531 |
| 1536 # GYP: //base.gyp:base_java_unittest_support | 1532 # GYP: //base.gyp:base_java_unittest_support |
| 1537 android_library("base_java_unittest_support") { | 1533 android_library("base_java_unittest_support") { |
| 1538 deps = [ | 1534 deps = [ |
| 1539 ":base_java", | 1535 ":base_java", |
| 1540 ] | 1536 ] |
| 1541 java_files = | 1537 java_files = |
| 1542 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1538 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1543 } | 1539 } |
| 1544 } | 1540 } |
| OLD | NEW |