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 948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
959 "trace_event/java_heap_dump_provider_android.cc", | 959 "trace_event/java_heap_dump_provider_android.cc", |
960 "trace_event/java_heap_dump_provider_android.h", | 960 "trace_event/java_heap_dump_provider_android.h", |
961 "trace_event/malloc_dump_provider.cc", | 961 "trace_event/malloc_dump_provider.cc", |
962 "trace_event/malloc_dump_provider.h", | 962 "trace_event/malloc_dump_provider.h", |
963 "trace_event/memory_allocator_dump.cc", | 963 "trace_event/memory_allocator_dump.cc", |
964 "trace_event/memory_allocator_dump.h", | 964 "trace_event/memory_allocator_dump.h", |
965 "trace_event/memory_allocator_dump_guid.cc", | 965 "trace_event/memory_allocator_dump_guid.cc", |
966 "trace_event/memory_allocator_dump_guid.h", | 966 "trace_event/memory_allocator_dump_guid.h", |
967 "trace_event/memory_dump_manager.cc", | 967 "trace_event/memory_dump_manager.cc", |
968 "trace_event/memory_dump_manager.h", | 968 "trace_event/memory_dump_manager.h", |
| 969 "trace_event/memory_dump_manager_test_utils.h", |
969 "trace_event/memory_dump_provider.h", | 970 "trace_event/memory_dump_provider.h", |
970 "trace_event/memory_dump_provider_info.cc", | 971 "trace_event/memory_dump_provider_info.cc", |
971 "trace_event/memory_dump_provider_info.h", | 972 "trace_event/memory_dump_provider_info.h", |
972 "trace_event/memory_dump_request_args.cc", | 973 "trace_event/memory_dump_request_args.cc", |
973 "trace_event/memory_dump_request_args.h", | 974 "trace_event/memory_dump_request_args.h", |
974 "trace_event/memory_dump_scheduler.cc", | 975 "trace_event/memory_dump_scheduler.cc", |
975 "trace_event/memory_dump_scheduler.h", | 976 "trace_event/memory_dump_scheduler.h", |
976 "trace_event/memory_infra_background_whitelist.cc", | 977 "trace_event/memory_infra_background_whitelist.cc", |
977 "trace_event/memory_infra_background_whitelist.h", | 978 "trace_event/memory_infra_background_whitelist.h", |
978 "trace_event/memory_peak_detector.cc", | 979 "trace_event/memory_peak_detector.cc", |
(...skipping 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2761 } | 2762 } |
2762 | 2763 |
2763 fuzzer_test("base_json_correctness_fuzzer") { | 2764 fuzzer_test("base_json_correctness_fuzzer") { |
2764 sources = [ | 2765 sources = [ |
2765 "json/correctness_fuzzer.cc", | 2766 "json/correctness_fuzzer.cc", |
2766 ] | 2767 ] |
2767 deps = [ | 2768 deps = [ |
2768 ":base", | 2769 ":base", |
2769 ] | 2770 ] |
2770 } | 2771 } |
OLD | NEW |