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