| 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 # HOW TO WRITE CONDITIONALS IN THIS FILE | 5 # HOW TO WRITE CONDITIONALS IN THIS FILE |
| 6 # ====================================== | 6 # ====================================== |
| 7 # | 7 # |
| 8 # In many other places, one would write a conditional that expresses all the | 8 # In many other places, one would write a conditional that expresses all the |
| 9 # cases when a source file is used or unused, and then either add or subtract | 9 # cases when a source file is used or unused, and then either add or subtract |
| 10 # it from the sources list in that case | 10 # it from the sources list in that case |
| (...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 #"process/process_metrics_freebsd.cc", # Unused in Chromium build. | 618 #"process/process_metrics_freebsd.cc", # Unused in Chromium build. |
| 619 "process/process_metrics_ios.cc", | 619 "process/process_metrics_ios.cc", |
| 620 "process/process_metrics_linux.cc", | 620 "process/process_metrics_linux.cc", |
| 621 "process/process_metrics_mac.cc", | 621 "process/process_metrics_mac.cc", |
| 622 | 622 |
| 623 #"process/process_metrics_openbsd.cc", # Unused in Chromium build. | 623 #"process/process_metrics_openbsd.cc", # Unused in Chromium build. |
| 624 "process/process_metrics_posix.cc", | 624 "process/process_metrics_posix.cc", |
| 625 "process/process_metrics_win.cc", | 625 "process/process_metrics_win.cc", |
| 626 "process/process_posix.cc", | 626 "process/process_posix.cc", |
| 627 "process/process_win.cc", | 627 "process/process_win.cc", |
| 628 "profiler/alternate_timer.cc", | |
| 629 "profiler/alternate_timer.h", | |
| 630 "profiler/native_stack_sampler.cc", | 628 "profiler/native_stack_sampler.cc", |
| 631 "profiler/native_stack_sampler.h", | 629 "profiler/native_stack_sampler.h", |
| 632 "profiler/native_stack_sampler_posix.cc", | 630 "profiler/native_stack_sampler_posix.cc", |
| 633 "profiler/native_stack_sampler_win.cc", | 631 "profiler/native_stack_sampler_win.cc", |
| 634 "profiler/scoped_profile.cc", | 632 "profiler/scoped_profile.cc", |
| 635 "profiler/scoped_profile.h", | 633 "profiler/scoped_profile.h", |
| 636 "profiler/scoped_tracker.cc", | 634 "profiler/scoped_tracker.cc", |
| 637 "profiler/scoped_tracker.h", | 635 "profiler/scoped_tracker.h", |
| 638 "profiler/stack_sampling_profiler.cc", | 636 "profiler/stack_sampling_profiler.cc", |
| 639 "profiler/stack_sampling_profiler.h", | 637 "profiler/stack_sampling_profiler.h", |
| (...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2047 | 2045 |
| 2048 # GYP: //base.gyp:base_java_unittest_support | 2046 # GYP: //base.gyp:base_java_unittest_support |
| 2049 android_library("base_java_unittest_support") { | 2047 android_library("base_java_unittest_support") { |
| 2050 deps = [ | 2048 deps = [ |
| 2051 ":base_java", | 2049 ":base_java", |
| 2052 ] | 2050 ] |
| 2053 java_files = | 2051 java_files = |
| 2054 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2052 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2055 } | 2053 } |
| 2056 } | 2054 } |
| OLD | NEW |