| 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 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 977 "trace_event/malloc_dump_provider.h", | 977 "trace_event/malloc_dump_provider.h", |
| 978 "trace_event/memory_allocator_dump.cc", | 978 "trace_event/memory_allocator_dump.cc", |
| 979 "trace_event/memory_allocator_dump.h", | 979 "trace_event/memory_allocator_dump.h", |
| 980 "trace_event/memory_allocator_dump_guid.cc", | 980 "trace_event/memory_allocator_dump_guid.cc", |
| 981 "trace_event/memory_allocator_dump_guid.h", | 981 "trace_event/memory_allocator_dump_guid.h", |
| 982 "trace_event/memory_dump_manager.cc", | 982 "trace_event/memory_dump_manager.cc", |
| 983 "trace_event/memory_dump_manager.h", | 983 "trace_event/memory_dump_manager.h", |
| 984 "trace_event/memory_dump_provider.h", | 984 "trace_event/memory_dump_provider.h", |
| 985 "trace_event/memory_dump_request_args.cc", | 985 "trace_event/memory_dump_request_args.cc", |
| 986 "trace_event/memory_dump_request_args.h", | 986 "trace_event/memory_dump_request_args.h", |
| 987 "trace_event/memory_dump_scheduler.cc", |
| 988 "trace_event/memory_dump_scheduler.h", |
| 987 "trace_event/memory_dump_session_state.cc", | 989 "trace_event/memory_dump_session_state.cc", |
| 988 "trace_event/memory_dump_session_state.h", | 990 "trace_event/memory_dump_session_state.h", |
| 989 "trace_event/memory_infra_background_whitelist.cc", | 991 "trace_event/memory_infra_background_whitelist.cc", |
| 990 "trace_event/memory_infra_background_whitelist.h", | 992 "trace_event/memory_infra_background_whitelist.h", |
| 991 "trace_event/memory_usage_estimator.cc", | 993 "trace_event/memory_usage_estimator.cc", |
| 992 "trace_event/memory_usage_estimator.h", | 994 "trace_event/memory_usage_estimator.h", |
| 993 "trace_event/process_memory_dump.cc", | 995 "trace_event/process_memory_dump.cc", |
| 994 "trace_event/process_memory_dump.h", | 996 "trace_event/process_memory_dump.h", |
| 995 "trace_event/process_memory_maps.cc", | 997 "trace_event/process_memory_maps.cc", |
| 996 "trace_event/process_memory_maps.h", | 998 "trace_event/process_memory_maps.h", |
| (...skipping 1643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2640 } | 2642 } |
| 2641 | 2643 |
| 2642 fuzzer_test("base_json_correctness_fuzzer") { | 2644 fuzzer_test("base_json_correctness_fuzzer") { |
| 2643 sources = [ | 2645 sources = [ |
| 2644 "json/correctness_fuzzer.cc", | 2646 "json/correctness_fuzzer.cc", |
| 2645 ] | 2647 ] |
| 2646 deps = [ | 2648 deps = [ |
| 2647 ":base", | 2649 ":base", |
| 2648 ] | 2650 ] |
| 2649 } | 2651 } |
| OLD | NEW |