| 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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 "metrics/persistent_histogram_allocator.cc", | 572 "metrics/persistent_histogram_allocator.cc", |
| 573 "metrics/persistent_histogram_allocator.h", | 573 "metrics/persistent_histogram_allocator.h", |
| 574 "metrics/persistent_memory_allocator.cc", | 574 "metrics/persistent_memory_allocator.cc", |
| 575 "metrics/persistent_memory_allocator.h", | 575 "metrics/persistent_memory_allocator.h", |
| 576 "metrics/persistent_sample_map.cc", | 576 "metrics/persistent_sample_map.cc", |
| 577 "metrics/persistent_sample_map.h", | 577 "metrics/persistent_sample_map.h", |
| 578 "metrics/sample_map.cc", | 578 "metrics/sample_map.cc", |
| 579 "metrics/sample_map.h", | 579 "metrics/sample_map.h", |
| 580 "metrics/sample_vector.cc", | 580 "metrics/sample_vector.cc", |
| 581 "metrics/sample_vector.h", | 581 "metrics/sample_vector.h", |
| 582 "metrics/single_sample_metrics.cc", | |
| 583 "metrics/single_sample_metrics.h", | |
| 584 "metrics/sparse_histogram.cc", | 582 "metrics/sparse_histogram.cc", |
| 585 "metrics/sparse_histogram.h", | 583 "metrics/sparse_histogram.h", |
| 586 "metrics/statistics_recorder.cc", | 584 "metrics/statistics_recorder.cc", |
| 587 "metrics/statistics_recorder.h", | 585 "metrics/statistics_recorder.h", |
| 588 "metrics/user_metrics.cc", | 586 "metrics/user_metrics.cc", |
| 589 "metrics/user_metrics.h", | 587 "metrics/user_metrics.h", |
| 590 "metrics/user_metrics_action.h", | 588 "metrics/user_metrics_action.h", |
| 591 "native_library.cc", | 589 "native_library.cc", |
| 592 "native_library.h", | 590 "native_library.h", |
| 593 "native_library_ios.mm", | 591 "native_library_ios.mm", |
| (...skipping 1449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2043 "metrics/histogram_functions_unittest.cc", | 2041 "metrics/histogram_functions_unittest.cc", |
| 2044 "metrics/histogram_macros_unittest.cc", | 2042 "metrics/histogram_macros_unittest.cc", |
| 2045 "metrics/histogram_snapshot_manager_unittest.cc", | 2043 "metrics/histogram_snapshot_manager_unittest.cc", |
| 2046 "metrics/histogram_unittest.cc", | 2044 "metrics/histogram_unittest.cc", |
| 2047 "metrics/metrics_hashes_unittest.cc", | 2045 "metrics/metrics_hashes_unittest.cc", |
| 2048 "metrics/persistent_histogram_allocator_unittest.cc", | 2046 "metrics/persistent_histogram_allocator_unittest.cc", |
| 2049 "metrics/persistent_memory_allocator_unittest.cc", | 2047 "metrics/persistent_memory_allocator_unittest.cc", |
| 2050 "metrics/persistent_sample_map_unittest.cc", | 2048 "metrics/persistent_sample_map_unittest.cc", |
| 2051 "metrics/sample_map_unittest.cc", | 2049 "metrics/sample_map_unittest.cc", |
| 2052 "metrics/sample_vector_unittest.cc", | 2050 "metrics/sample_vector_unittest.cc", |
| 2053 "metrics/single_sample_metrics_unittest.cc", | |
| 2054 "metrics/sparse_histogram_unittest.cc", | 2051 "metrics/sparse_histogram_unittest.cc", |
| 2055 "metrics/statistics_recorder_unittest.cc", | 2052 "metrics/statistics_recorder_unittest.cc", |
| 2056 "native_library_unittest.cc", | 2053 "native_library_unittest.cc", |
| 2057 "numerics/safe_numerics_unittest.cc", | 2054 "numerics/safe_numerics_unittest.cc", |
| 2058 "numerics/saturated_arithmetic_unittest.cc", | 2055 "numerics/saturated_arithmetic_unittest.cc", |
| 2059 "observer_list_unittest.cc", | 2056 "observer_list_unittest.cc", |
| 2060 "optional_unittest.cc", | 2057 "optional_unittest.cc", |
| 2061 "os_compat_android_unittest.cc", | 2058 "os_compat_android_unittest.cc", |
| 2062 "path_service_unittest.cc", | 2059 "path_service_unittest.cc", |
| 2063 "pending_task_unittest.cc", | 2060 "pending_task_unittest.cc", |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2710 } | 2707 } |
| 2711 | 2708 |
| 2712 fuzzer_test("base_json_correctness_fuzzer") { | 2709 fuzzer_test("base_json_correctness_fuzzer") { |
| 2713 sources = [ | 2710 sources = [ |
| 2714 "json/correctness_fuzzer.cc", | 2711 "json/correctness_fuzzer.cc", |
| 2715 ] | 2712 ] |
| 2716 deps = [ | 2713 deps = [ |
| 2717 ":base", | 2714 ":base", |
| 2718 ] | 2715 ] |
| 2719 } | 2716 } |
| OLD | NEW |