| 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 2136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2147 "trace_event/blame_context_unittest.cc", | 2147 "trace_event/blame_context_unittest.cc", |
| 2148 "trace_event/event_name_filter_unittest.cc", | 2148 "trace_event/event_name_filter_unittest.cc", |
| 2149 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", | 2149 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", |
| 2150 "trace_event/heap_profiler_allocation_register_unittest.cc", | 2150 "trace_event/heap_profiler_allocation_register_unittest.cc", |
| 2151 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", | 2151 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", |
| 2152 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", | 2152 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", |
| 2153 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", | 2153 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", |
| 2154 "trace_event/java_heap_dump_provider_android_unittest.cc", | 2154 "trace_event/java_heap_dump_provider_android_unittest.cc", |
| 2155 "trace_event/memory_allocator_dump_unittest.cc", | 2155 "trace_event/memory_allocator_dump_unittest.cc", |
| 2156 "trace_event/memory_dump_manager_unittest.cc", | 2156 "trace_event/memory_dump_manager_unittest.cc", |
| 2157 "trace_event/memory_dump_scheduler_unittest.cc", | |
| 2158 "trace_event/memory_usage_estimator_unittest.cc", | 2157 "trace_event/memory_usage_estimator_unittest.cc", |
| 2159 "trace_event/process_memory_dump_unittest.cc", | 2158 "trace_event/process_memory_dump_unittest.cc", |
| 2160 "trace_event/trace_category_unittest.cc", | 2159 "trace_event/trace_category_unittest.cc", |
| 2161 "trace_event/trace_config_unittest.cc", | 2160 "trace_event/trace_config_unittest.cc", |
| 2162 "trace_event/trace_event_argument_unittest.cc", | 2161 "trace_event/trace_event_argument_unittest.cc", |
| 2163 "trace_event/trace_event_filter_test_utils.cc", | 2162 "trace_event/trace_event_filter_test_utils.cc", |
| 2164 "trace_event/trace_event_filter_test_utils.h", | 2163 "trace_event/trace_event_filter_test_utils.h", |
| 2165 "trace_event/trace_event_synthetic_delay_unittest.cc", | 2164 "trace_event/trace_event_synthetic_delay_unittest.cc", |
| 2166 "trace_event/trace_event_system_stats_monitor_unittest.cc", | 2165 "trace_event/trace_event_system_stats_monitor_unittest.cc", |
| 2167 "trace_event/trace_event_unittest.cc", | 2166 "trace_event/trace_event_unittest.cc", |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2670 } | 2669 } |
| 2671 | 2670 |
| 2672 fuzzer_test("base_json_correctness_fuzzer") { | 2671 fuzzer_test("base_json_correctness_fuzzer") { |
| 2673 sources = [ | 2672 sources = [ |
| 2674 "json/correctness_fuzzer.cc", | 2673 "json/correctness_fuzzer.cc", |
| 2675 ] | 2674 ] |
| 2676 deps = [ | 2675 deps = [ |
| 2677 ":base", | 2676 ":base", |
| 2678 ] | 2677 ] |
| 2679 } | 2678 } |
| OLD | NEW |