| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 "metrics/histogram_samples.cc", | 529 "metrics/histogram_samples.cc", |
| 530 "metrics/histogram_samples.h", | 530 "metrics/histogram_samples.h", |
| 531 "metrics/histogram_snapshot_manager.cc", | 531 "metrics/histogram_snapshot_manager.cc", |
| 532 "metrics/histogram_snapshot_manager.h", | 532 "metrics/histogram_snapshot_manager.h", |
| 533 "metrics/metrics_hashes.cc", | 533 "metrics/metrics_hashes.cc", |
| 534 "metrics/metrics_hashes.h", | 534 "metrics/metrics_hashes.h", |
| 535 "metrics/persistent_histogram_allocator.cc", | 535 "metrics/persistent_histogram_allocator.cc", |
| 536 "metrics/persistent_histogram_allocator.h", | 536 "metrics/persistent_histogram_allocator.h", |
| 537 "metrics/persistent_memory_allocator.cc", | 537 "metrics/persistent_memory_allocator.cc", |
| 538 "metrics/persistent_memory_allocator.h", | 538 "metrics/persistent_memory_allocator.h", |
| 539 "metrics/persistent_sample_map.cc", |
| 540 "metrics/persistent_sample_map.h", |
| 539 "metrics/sample_map.cc", | 541 "metrics/sample_map.cc", |
| 540 "metrics/sample_map.h", | 542 "metrics/sample_map.h", |
| 541 "metrics/sample_vector.cc", | 543 "metrics/sample_vector.cc", |
| 542 "metrics/sample_vector.h", | 544 "metrics/sample_vector.h", |
| 543 "metrics/sparse_histogram.cc", | 545 "metrics/sparse_histogram.cc", |
| 544 "metrics/sparse_histogram.h", | 546 "metrics/sparse_histogram.h", |
| 545 "metrics/statistics_recorder.cc", | 547 "metrics/statistics_recorder.cc", |
| 546 "metrics/statistics_recorder.h", | 548 "metrics/statistics_recorder.h", |
| 547 "metrics/user_metrics.cc", | 549 "metrics/user_metrics.cc", |
| 548 "metrics/user_metrics.h", | 550 "metrics/user_metrics.h", |
| (...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1743 "metrics/bucket_ranges_unittest.cc", | 1745 "metrics/bucket_ranges_unittest.cc", |
| 1744 "metrics/field_trial_unittest.cc", | 1746 "metrics/field_trial_unittest.cc", |
| 1745 "metrics/histogram_base_unittest.cc", | 1747 "metrics/histogram_base_unittest.cc", |
| 1746 "metrics/histogram_delta_serialization_unittest.cc", | 1748 "metrics/histogram_delta_serialization_unittest.cc", |
| 1747 "metrics/histogram_macros_unittest.cc", | 1749 "metrics/histogram_macros_unittest.cc", |
| 1748 "metrics/histogram_snapshot_manager_unittest.cc", | 1750 "metrics/histogram_snapshot_manager_unittest.cc", |
| 1749 "metrics/histogram_unittest.cc", | 1751 "metrics/histogram_unittest.cc", |
| 1750 "metrics/metrics_hashes_unittest.cc", | 1752 "metrics/metrics_hashes_unittest.cc", |
| 1751 "metrics/persistent_histogram_allocator_unittest.cc", | 1753 "metrics/persistent_histogram_allocator_unittest.cc", |
| 1752 "metrics/persistent_memory_allocator_unittest.cc", | 1754 "metrics/persistent_memory_allocator_unittest.cc", |
| 1755 "metrics/persistent_sample_map_unittest.cc", |
| 1753 "metrics/sample_map_unittest.cc", | 1756 "metrics/sample_map_unittest.cc", |
| 1754 "metrics/sample_vector_unittest.cc", | 1757 "metrics/sample_vector_unittest.cc", |
| 1755 "metrics/sparse_histogram_unittest.cc", | 1758 "metrics/sparse_histogram_unittest.cc", |
| 1756 "metrics/statistics_recorder_unittest.cc", | 1759 "metrics/statistics_recorder_unittest.cc", |
| 1757 "native_library_unittest.cc", | 1760 "native_library_unittest.cc", |
| 1758 "numerics/safe_numerics_unittest.cc", | 1761 "numerics/safe_numerics_unittest.cc", |
| 1759 "observer_list_unittest.cc", | 1762 "observer_list_unittest.cc", |
| 1760 "os_compat_android_unittest.cc", | 1763 "os_compat_android_unittest.cc", |
| 1761 "path_service_unittest.cc", | 1764 "path_service_unittest.cc", |
| 1762 "pickle_unittest.cc", | 1765 "pickle_unittest.cc", |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2201 | 2204 |
| 2202 # GYP: //base.gyp:base_java_unittest_support | 2205 # GYP: //base.gyp:base_java_unittest_support |
| 2203 android_library("base_java_unittest_support") { | 2206 android_library("base_java_unittest_support") { |
| 2204 deps = [ | 2207 deps = [ |
| 2205 ":base_java", | 2208 ":base_java", |
| 2206 ] | 2209 ] |
| 2207 java_files = | 2210 java_files = |
| 2208 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2211 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2209 } | 2212 } |
| 2210 } | 2213 } |
| OLD | NEW |