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_value_histograms.cc", |
| 583 "metrics/single_value_histograms.h", |
582 "metrics/sparse_histogram.cc", | 584 "metrics/sparse_histogram.cc", |
583 "metrics/sparse_histogram.h", | 585 "metrics/sparse_histogram.h", |
584 "metrics/statistics_recorder.cc", | 586 "metrics/statistics_recorder.cc", |
585 "metrics/statistics_recorder.h", | 587 "metrics/statistics_recorder.h", |
586 "metrics/user_metrics.cc", | 588 "metrics/user_metrics.cc", |
587 "metrics/user_metrics.h", | 589 "metrics/user_metrics.h", |
588 "metrics/user_metrics_action.h", | 590 "metrics/user_metrics_action.h", |
589 "native_library.cc", | 591 "native_library.cc", |
590 "native_library.h", | 592 "native_library.h", |
591 "native_library_ios.mm", | 593 "native_library_ios.mm", |
(...skipping 2103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2695 } | 2697 } |
2696 | 2698 |
2697 fuzzer_test("base_json_correctness_fuzzer") { | 2699 fuzzer_test("base_json_correctness_fuzzer") { |
2698 sources = [ | 2700 sources = [ |
2699 "json/correctness_fuzzer.cc", | 2701 "json/correctness_fuzzer.cc", |
2700 ] | 2702 ] |
2701 deps = [ | 2703 deps = [ |
2702 ":base", | 2704 ":base", |
2703 ] | 2705 ] |
2704 } | 2706 } |
OLD | NEW |