| 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 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 "trace_event/memory_dump_request_args.cc", | 974 "trace_event/memory_dump_request_args.cc", |
| 975 "trace_event/memory_dump_request_args.h", | 975 "trace_event/memory_dump_request_args.h", |
| 976 "trace_event/memory_dump_scheduler.cc", | 976 "trace_event/memory_dump_scheduler.cc", |
| 977 "trace_event/memory_dump_scheduler.h", | 977 "trace_event/memory_dump_scheduler.h", |
| 978 "trace_event/memory_dump_session_state.cc", | 978 "trace_event/memory_dump_session_state.cc", |
| 979 "trace_event/memory_dump_session_state.h", | 979 "trace_event/memory_dump_session_state.h", |
| 980 "trace_event/memory_infra_background_whitelist.cc", | 980 "trace_event/memory_infra_background_whitelist.cc", |
| 981 "trace_event/memory_infra_background_whitelist.h", | 981 "trace_event/memory_infra_background_whitelist.h", |
| 982 "trace_event/memory_peak_detector.cc", | 982 "trace_event/memory_peak_detector.cc", |
| 983 "trace_event/memory_peak_detector.h", | 983 "trace_event/memory_peak_detector.h", |
| 984 "trace_event/memory_tracing_observer.cc", |
| 985 "trace_event/memory_tracing_observer.h", |
| 984 "trace_event/memory_usage_estimator.cc", | 986 "trace_event/memory_usage_estimator.cc", |
| 985 "trace_event/memory_usage_estimator.h", | 987 "trace_event/memory_usage_estimator.h", |
| 986 "trace_event/process_memory_dump.cc", | 988 "trace_event/process_memory_dump.cc", |
| 987 "trace_event/process_memory_dump.h", | 989 "trace_event/process_memory_dump.h", |
| 988 "trace_event/process_memory_maps.cc", | 990 "trace_event/process_memory_maps.cc", |
| 989 "trace_event/process_memory_maps.h", | 991 "trace_event/process_memory_maps.h", |
| 990 "trace_event/process_memory_totals.cc", | 992 "trace_event/process_memory_totals.cc", |
| 991 "trace_event/process_memory_totals.h", | 993 "trace_event/process_memory_totals.h", |
| 992 "trace_event/trace_buffer.cc", | 994 "trace_event/trace_buffer.cc", |
| 993 "trace_event/trace_buffer.h", | 995 "trace_event/trace_buffer.h", |
| (...skipping 1699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2693 } | 2695 } |
| 2694 | 2696 |
| 2695 fuzzer_test("base_json_correctness_fuzzer") { | 2697 fuzzer_test("base_json_correctness_fuzzer") { |
| 2696 sources = [ | 2698 sources = [ |
| 2697 "json/correctness_fuzzer.cc", | 2699 "json/correctness_fuzzer.cc", |
| 2698 ] | 2700 ] |
| 2699 deps = [ | 2701 deps = [ |
| 2700 ":base", | 2702 ":base", |
| 2701 ] | 2703 ] |
| 2702 } | 2704 } |
| OLD | NEW |