| 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 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 "trace_event/memory_dump_session_state.cc", | 941 "trace_event/memory_dump_session_state.cc", |
| 942 "trace_event/memory_dump_session_state.h", | 942 "trace_event/memory_dump_session_state.h", |
| 943 "trace_event/memory_infra_background_whitelist.cc", | 943 "trace_event/memory_infra_background_whitelist.cc", |
| 944 "trace_event/memory_infra_background_whitelist.h", | 944 "trace_event/memory_infra_background_whitelist.h", |
| 945 "trace_event/process_memory_dump.cc", | 945 "trace_event/process_memory_dump.cc", |
| 946 "trace_event/process_memory_dump.h", | 946 "trace_event/process_memory_dump.h", |
| 947 "trace_event/process_memory_maps.cc", | 947 "trace_event/process_memory_maps.cc", |
| 948 "trace_event/process_memory_maps.h", | 948 "trace_event/process_memory_maps.h", |
| 949 "trace_event/process_memory_totals.cc", | 949 "trace_event/process_memory_totals.cc", |
| 950 "trace_event/process_memory_totals.h", | 950 "trace_event/process_memory_totals.h", |
| 951 "trace_event/thread_local_event_buffer.cc", |
| 952 "trace_event/thread_local_event_buffer.h", |
| 951 "trace_event/trace_buffer.cc", | 953 "trace_event/trace_buffer.cc", |
| 952 "trace_event/trace_buffer.h", | 954 "trace_event/trace_buffer.h", |
| 953 "trace_event/trace_category.h", | 955 "trace_event/trace_category.h", |
| 954 "trace_event/trace_config.cc", | 956 "trace_event/trace_config.cc", |
| 955 "trace_event/trace_config.h", | 957 "trace_event/trace_config.h", |
| 956 "trace_event/trace_event.h", | 958 "trace_event/trace_event.h", |
| 957 "trace_event/trace_event_android.cc", | 959 "trace_event/trace_event_android.cc", |
| 958 "trace_event/trace_event_argument.cc", | 960 "trace_event/trace_event_argument.cc", |
| 959 "trace_event/trace_event_argument.h", | 961 "trace_event/trace_event_argument.h", |
| 960 "trace_event/trace_event_etw_export_win.cc", | 962 "trace_event/trace_event_etw_export_win.cc", |
| (...skipping 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2488 } | 2490 } |
| 2489 | 2491 |
| 2490 fuzzer_test("base_json_correctness_fuzzer") { | 2492 fuzzer_test("base_json_correctness_fuzzer") { |
| 2491 sources = [ | 2493 sources = [ |
| 2492 "json/correctness_fuzzer.cc", | 2494 "json/correctness_fuzzer.cc", |
| 2493 ] | 2495 ] |
| 2494 deps = [ | 2496 deps = [ |
| 2495 ":base", | 2497 ":base", |
| 2496 ] | 2498 ] |
| 2497 } | 2499 } |
| OLD | NEW |