| 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 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 "trace_event/memory_tracing_observer.cc", | 985 "trace_event/memory_tracing_observer.cc", |
| 986 "trace_event/memory_tracing_observer.h", | 986 "trace_event/memory_tracing_observer.h", |
| 987 "trace_event/memory_usage_estimator.cc", | 987 "trace_event/memory_usage_estimator.cc", |
| 988 "trace_event/memory_usage_estimator.h", | 988 "trace_event/memory_usage_estimator.h", |
| 989 "trace_event/process_memory_dump.cc", | 989 "trace_event/process_memory_dump.cc", |
| 990 "trace_event/process_memory_dump.h", | 990 "trace_event/process_memory_dump.h", |
| 991 "trace_event/process_memory_maps.cc", | 991 "trace_event/process_memory_maps.cc", |
| 992 "trace_event/process_memory_maps.h", | 992 "trace_event/process_memory_maps.h", |
| 993 "trace_event/process_memory_totals.cc", | 993 "trace_event/process_memory_totals.cc", |
| 994 "trace_event/process_memory_totals.h", | 994 "trace_event/process_memory_totals.h", |
| 995 "trace_event/sharded_allocation_register.cc", |
| 996 "trace_event/sharded_allocation_register.h", |
| 995 "trace_event/trace_buffer.cc", | 997 "trace_event/trace_buffer.cc", |
| 996 "trace_event/trace_buffer.h", | 998 "trace_event/trace_buffer.h", |
| 997 "trace_event/trace_category.h", | 999 "trace_event/trace_category.h", |
| 998 "trace_event/trace_config.cc", | 1000 "trace_event/trace_config.cc", |
| 999 "trace_event/trace_config.h", | 1001 "trace_event/trace_config.h", |
| 1000 "trace_event/trace_config_category_filter.cc", | 1002 "trace_event/trace_config_category_filter.cc", |
| 1001 "trace_event/trace_config_category_filter.h", | 1003 "trace_event/trace_config_category_filter.h", |
| 1002 "trace_event/trace_event.h", | 1004 "trace_event/trace_event.h", |
| 1003 "trace_event/trace_event_android.cc", | 1005 "trace_event/trace_event_android.cc", |
| 1004 "trace_event/trace_event_argument.cc", | 1006 "trace_event/trace_event_argument.cc", |
| (...skipping 1748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2753 } | 2755 } |
| 2754 | 2756 |
| 2755 fuzzer_test("base_json_correctness_fuzzer") { | 2757 fuzzer_test("base_json_correctness_fuzzer") { |
| 2756 sources = [ | 2758 sources = [ |
| 2757 "json/correctness_fuzzer.cc", | 2759 "json/correctness_fuzzer.cc", |
| 2758 ] | 2760 ] |
| 2759 deps = [ | 2761 deps = [ |
| 2760 ":base", | 2762 ":base", |
| 2761 ] | 2763 ] |
| 2762 } | 2764 } |
| OLD | NEW |