| 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 2143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2154 "trace_event/blame_context_unittest.cc", | 2154 "trace_event/blame_context_unittest.cc", |
| 2155 "trace_event/event_name_filter_unittest.cc", | 2155 "trace_event/event_name_filter_unittest.cc", |
| 2156 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", | 2156 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", |
| 2157 "trace_event/heap_profiler_allocation_register_unittest.cc", | 2157 "trace_event/heap_profiler_allocation_register_unittest.cc", |
| 2158 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", | 2158 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", |
| 2159 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", | 2159 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", |
| 2160 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", | 2160 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", |
| 2161 "trace_event/java_heap_dump_provider_android_unittest.cc", | 2161 "trace_event/java_heap_dump_provider_android_unittest.cc", |
| 2162 "trace_event/memory_allocator_dump_unittest.cc", | 2162 "trace_event/memory_allocator_dump_unittest.cc", |
| 2163 "trace_event/memory_dump_manager_unittest.cc", | 2163 "trace_event/memory_dump_manager_unittest.cc", |
| 2164 "trace_event/memory_dump_scheduler_unittest.cc", |
| 2164 "trace_event/memory_usage_estimator_unittest.cc", | 2165 "trace_event/memory_usage_estimator_unittest.cc", |
| 2165 "trace_event/process_memory_dump_unittest.cc", | 2166 "trace_event/process_memory_dump_unittest.cc", |
| 2166 "trace_event/trace_category_unittest.cc", | 2167 "trace_event/trace_category_unittest.cc", |
| 2167 "trace_event/trace_config_unittest.cc", | 2168 "trace_event/trace_config_unittest.cc", |
| 2168 "trace_event/trace_event_argument_unittest.cc", | 2169 "trace_event/trace_event_argument_unittest.cc", |
| 2169 "trace_event/trace_event_filter_test_utils.cc", | 2170 "trace_event/trace_event_filter_test_utils.cc", |
| 2170 "trace_event/trace_event_filter_test_utils.h", | 2171 "trace_event/trace_event_filter_test_utils.h", |
| 2171 "trace_event/trace_event_synthetic_delay_unittest.cc", | 2172 "trace_event/trace_event_synthetic_delay_unittest.cc", |
| 2172 "trace_event/trace_event_system_stats_monitor_unittest.cc", | 2173 "trace_event/trace_event_system_stats_monitor_unittest.cc", |
| 2173 "trace_event/trace_event_unittest.cc", | 2174 "trace_event/trace_event_unittest.cc", |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2676 } | 2677 } |
| 2677 | 2678 |
| 2678 fuzzer_test("base_json_correctness_fuzzer") { | 2679 fuzzer_test("base_json_correctness_fuzzer") { |
| 2679 sources = [ | 2680 sources = [ |
| 2680 "json/correctness_fuzzer.cc", | 2681 "json/correctness_fuzzer.cc", |
| 2681 ] | 2682 ] |
| 2682 deps = [ | 2683 deps = [ |
| 2683 ":base", | 2684 ":base", |
| 2684 ] | 2685 ] |
| 2685 } | 2686 } |
| OLD | NEW |