| 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 2128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2139 "trace_event/blame_context_unittest.cc", | 2139 "trace_event/blame_context_unittest.cc", |
| 2140 "trace_event/event_name_filter_unittest.cc", | 2140 "trace_event/event_name_filter_unittest.cc", |
| 2141 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", | 2141 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", |
| 2142 "trace_event/heap_profiler_allocation_register_unittest.cc", | 2142 "trace_event/heap_profiler_allocation_register_unittest.cc", |
| 2143 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", | 2143 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", |
| 2144 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", | 2144 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", |
| 2145 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", | 2145 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", |
| 2146 "trace_event/java_heap_dump_provider_android_unittest.cc", | 2146 "trace_event/java_heap_dump_provider_android_unittest.cc", |
| 2147 "trace_event/memory_allocator_dump_unittest.cc", | 2147 "trace_event/memory_allocator_dump_unittest.cc", |
| 2148 "trace_event/memory_dump_manager_unittest.cc", | 2148 "trace_event/memory_dump_manager_unittest.cc", |
| 2149 "trace_event/memory_dump_scheduler_unittest.cc", |
| 2149 "trace_event/memory_usage_estimator_unittest.cc", | 2150 "trace_event/memory_usage_estimator_unittest.cc", |
| 2150 "trace_event/process_memory_dump_unittest.cc", | 2151 "trace_event/process_memory_dump_unittest.cc", |
| 2151 "trace_event/trace_category_unittest.cc", | 2152 "trace_event/trace_category_unittest.cc", |
| 2152 "trace_event/trace_config_unittest.cc", | 2153 "trace_event/trace_config_unittest.cc", |
| 2153 "trace_event/trace_event_argument_unittest.cc", | 2154 "trace_event/trace_event_argument_unittest.cc", |
| 2154 "trace_event/trace_event_filter_test_utils.cc", | 2155 "trace_event/trace_event_filter_test_utils.cc", |
| 2155 "trace_event/trace_event_filter_test_utils.h", | 2156 "trace_event/trace_event_filter_test_utils.h", |
| 2156 "trace_event/trace_event_synthetic_delay_unittest.cc", | 2157 "trace_event/trace_event_synthetic_delay_unittest.cc", |
| 2157 "trace_event/trace_event_system_stats_monitor_unittest.cc", | 2158 "trace_event/trace_event_system_stats_monitor_unittest.cc", |
| 2158 "trace_event/trace_event_unittest.cc", | 2159 "trace_event/trace_event_unittest.cc", |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2657 } | 2658 } |
| 2658 | 2659 |
| 2659 fuzzer_test("base_json_correctness_fuzzer") { | 2660 fuzzer_test("base_json_correctness_fuzzer") { |
| 2660 sources = [ | 2661 sources = [ |
| 2661 "json/correctness_fuzzer.cc", | 2662 "json/correctness_fuzzer.cc", |
| 2662 ] | 2663 ] |
| 2663 deps = [ | 2664 deps = [ |
| 2664 ":base", | 2665 ":base", |
| 2665 ] | 2666 ] |
| 2666 } | 2667 } |
| OLD | NEW |