| 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 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 "trace_event/process_memory_dump.h", | 1009 "trace_event/process_memory_dump.h", |
| 1010 "trace_event/process_memory_maps.cc", | 1010 "trace_event/process_memory_maps.cc", |
| 1011 "trace_event/process_memory_maps.h", | 1011 "trace_event/process_memory_maps.h", |
| 1012 "trace_event/process_memory_totals.cc", | 1012 "trace_event/process_memory_totals.cc", |
| 1013 "trace_event/process_memory_totals.h", | 1013 "trace_event/process_memory_totals.h", |
| 1014 "trace_event/trace_buffer.cc", | 1014 "trace_event/trace_buffer.cc", |
| 1015 "trace_event/trace_buffer.h", | 1015 "trace_event/trace_buffer.h", |
| 1016 "trace_event/trace_category.h", | 1016 "trace_event/trace_category.h", |
| 1017 "trace_event/trace_config.cc", | 1017 "trace_event/trace_config.cc", |
| 1018 "trace_event/trace_config.h", | 1018 "trace_event/trace_config.h", |
| 1019 "trace_event/trace_config_category_filter.cc", |
| 1020 "trace_event/trace_config_category_filter.h", |
| 1019 "trace_event/trace_event.h", | 1021 "trace_event/trace_event.h", |
| 1020 "trace_event/trace_event_android.cc", | 1022 "trace_event/trace_event_android.cc", |
| 1021 "trace_event/trace_event_argument.cc", | 1023 "trace_event/trace_event_argument.cc", |
| 1022 "trace_event/trace_event_argument.h", | 1024 "trace_event/trace_event_argument.h", |
| 1023 "trace_event/trace_event_etw_export_win.cc", | 1025 "trace_event/trace_event_etw_export_win.cc", |
| 1024 "trace_event/trace_event_etw_export_win.h", | 1026 "trace_event/trace_event_etw_export_win.h", |
| 1025 "trace_event/trace_event_filter.cc", | 1027 "trace_event/trace_event_filter.cc", |
| 1026 "trace_event/trace_event_filter.h", | 1028 "trace_event/trace_event_filter.h", |
| 1027 "trace_event/trace_event_impl.cc", | 1029 "trace_event/trace_event_impl.cc", |
| 1028 "trace_event/trace_event_impl.h", | 1030 "trace_event/trace_event_impl.h", |
| (...skipping 1649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2678 } | 2680 } |
| 2679 | 2681 |
| 2680 fuzzer_test("base_json_correctness_fuzzer") { | 2682 fuzzer_test("base_json_correctness_fuzzer") { |
| 2681 sources = [ | 2683 sources = [ |
| 2682 "json/correctness_fuzzer.cc", | 2684 "json/correctness_fuzzer.cc", |
| 2683 ] | 2685 ] |
| 2684 deps = [ | 2686 deps = [ |
| 2685 ":base", | 2687 ":base", |
| 2686 ] | 2688 ] |
| 2687 } | 2689 } |
| OLD | NEW |