| 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 "memory/aligned_memory.cc", | 501 "memory/aligned_memory.cc", |
| 502 "memory/aligned_memory.h", | 502 "memory/aligned_memory.h", |
| 503 "memory/discardable_memory.cc", | 503 "memory/discardable_memory.cc", |
| 504 "memory/discardable_memory.h", | 504 "memory/discardable_memory.h", |
| 505 "memory/discardable_memory_allocator.cc", | 505 "memory/discardable_memory_allocator.cc", |
| 506 "memory/discardable_memory_allocator.h", | 506 "memory/discardable_memory_allocator.h", |
| 507 "memory/discardable_shared_memory.cc", | 507 "memory/discardable_shared_memory.cc", |
| 508 "memory/discardable_shared_memory.h", | 508 "memory/discardable_shared_memory.h", |
| 509 "memory/free_deleter.h", | 509 "memory/free_deleter.h", |
| 510 "memory/linked_ptr.h", | 510 "memory/linked_ptr.h", |
| 511 "memory/low_memory_observer_chromeos.cc", |
| 512 "memory/low_memory_observer_chromeos.h", |
| 511 "memory/manual_constructor.h", | 513 "memory/manual_constructor.h", |
| 512 "memory/memory_coordinator_client.cc", | 514 "memory/memory_coordinator_client.cc", |
| 513 "memory/memory_coordinator_client.h", | 515 "memory/memory_coordinator_client.h", |
| 514 "memory/memory_coordinator_client_registry.cc", | 516 "memory/memory_coordinator_client_registry.cc", |
| 515 "memory/memory_coordinator_client_registry.h", | 517 "memory/memory_coordinator_client_registry.h", |
| 516 "memory/memory_coordinator_proxy.cc", | 518 "memory/memory_coordinator_proxy.cc", |
| 517 "memory/memory_coordinator_proxy.h", | 519 "memory/memory_coordinator_proxy.h", |
| 518 "memory/memory_pressure_listener.cc", | 520 "memory/memory_pressure_listener.cc", |
| 519 "memory/memory_pressure_listener.h", | 521 "memory/memory_pressure_listener.h", |
| 520 "memory/memory_pressure_monitor.cc", | 522 "memory/memory_pressure_monitor.cc", |
| (...skipping 2163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2684 } | 2686 } |
| 2685 | 2687 |
| 2686 fuzzer_test("base_json_correctness_fuzzer") { | 2688 fuzzer_test("base_json_correctness_fuzzer") { |
| 2687 sources = [ | 2689 sources = [ |
| 2688 "json/correctness_fuzzer.cc", | 2690 "json/correctness_fuzzer.cc", |
| 2689 ] | 2691 ] |
| 2690 deps = [ | 2692 deps = [ |
| 2691 ":base", | 2693 ":base", |
| 2692 ] | 2694 ] |
| 2693 } | 2695 } |
| OLD | NEW |