Chromium Code Reviews| 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 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 957 "trace_event/memory_allocator_dump.h", | 957 "trace_event/memory_allocator_dump.h", |
| 958 "trace_event/memory_allocator_dump_guid.cc", | 958 "trace_event/memory_allocator_dump_guid.cc", |
| 959 "trace_event/memory_allocator_dump_guid.h", | 959 "trace_event/memory_allocator_dump_guid.h", |
| 960 "trace_event/memory_dump_manager.cc", | 960 "trace_event/memory_dump_manager.cc", |
| 961 "trace_event/memory_dump_manager.h", | 961 "trace_event/memory_dump_manager.h", |
| 962 "trace_event/memory_dump_provider.h", | 962 "trace_event/memory_dump_provider.h", |
| 963 "trace_event/memory_dump_request_args.cc", | 963 "trace_event/memory_dump_request_args.cc", |
| 964 "trace_event/memory_dump_request_args.h", | 964 "trace_event/memory_dump_request_args.h", |
| 965 "trace_event/memory_dump_session_state.cc", | 965 "trace_event/memory_dump_session_state.cc", |
| 966 "trace_event/memory_dump_session_state.h", | 966 "trace_event/memory_dump_session_state.h", |
| 967 "trace_event/memory_dump_trigger.cc", | |
|
Primiano Tucci (use gerrit)
2017/01/18 16:16:06
remember also to update GN's bootstrap.py otherwis
ssid
2017/01/20 23:07:27
Done.
| |
| 968 "trace_event/memory_dump_trigger.h", | |
| 967 "trace_event/memory_infra_background_whitelist.cc", | 969 "trace_event/memory_infra_background_whitelist.cc", |
| 968 "trace_event/memory_infra_background_whitelist.h", | 970 "trace_event/memory_infra_background_whitelist.h", |
| 969 "trace_event/memory_usage_estimator.cc", | 971 "trace_event/memory_usage_estimator.cc", |
| 970 "trace_event/memory_usage_estimator.h", | 972 "trace_event/memory_usage_estimator.h", |
| 971 "trace_event/process_memory_dump.cc", | 973 "trace_event/process_memory_dump.cc", |
| 972 "trace_event/process_memory_dump.h", | 974 "trace_event/process_memory_dump.h", |
| 973 "trace_event/process_memory_maps.cc", | 975 "trace_event/process_memory_maps.cc", |
| 974 "trace_event/process_memory_maps.h", | 976 "trace_event/process_memory_maps.h", |
| 975 "trace_event/process_memory_totals.cc", | 977 "trace_event/process_memory_totals.cc", |
| 976 "trace_event/process_memory_totals.h", | 978 "trace_event/process_memory_totals.h", |
| (...skipping 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2563 } | 2565 } |
| 2564 | 2566 |
| 2565 fuzzer_test("base_json_correctness_fuzzer") { | 2567 fuzzer_test("base_json_correctness_fuzzer") { |
| 2566 sources = [ | 2568 sources = [ |
| 2567 "json/correctness_fuzzer.cc", | 2569 "json/correctness_fuzzer.cc", |
| 2568 ] | 2570 ] |
| 2569 deps = [ | 2571 deps = [ |
| 2570 ":base", | 2572 ":base", |
| 2571 ] | 2573 ] |
| 2572 } | 2574 } |
| OLD | NEW |