| 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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 "memory/aligned_memory.h", | 462 "memory/aligned_memory.h", |
| 463 "memory/discardable_memory.cc", | 463 "memory/discardable_memory.cc", |
| 464 "memory/discardable_memory.h", | 464 "memory/discardable_memory.h", |
| 465 "memory/discardable_memory_allocator.cc", | 465 "memory/discardable_memory_allocator.cc", |
| 466 "memory/discardable_memory_allocator.h", | 466 "memory/discardable_memory_allocator.h", |
| 467 "memory/discardable_shared_memory.cc", | 467 "memory/discardable_shared_memory.cc", |
| 468 "memory/discardable_shared_memory.h", | 468 "memory/discardable_shared_memory.h", |
| 469 "memory/free_deleter.h", | 469 "memory/free_deleter.h", |
| 470 "memory/linked_ptr.h", | 470 "memory/linked_ptr.h", |
| 471 "memory/manual_constructor.h", | 471 "memory/manual_constructor.h", |
| 472 "memory/memory_coordinator_client.cc", |
| 472 "memory/memory_coordinator_client.h", | 473 "memory/memory_coordinator_client.h", |
| 473 "memory/memory_coordinator_client_registry.cc", | 474 "memory/memory_coordinator_client_registry.cc", |
| 474 "memory/memory_coordinator_client_registry.h", | 475 "memory/memory_coordinator_client_registry.h", |
| 475 "memory/memory_coordinator_proxy.cc", | 476 "memory/memory_coordinator_proxy.cc", |
| 476 "memory/memory_coordinator_proxy.h", | 477 "memory/memory_coordinator_proxy.h", |
| 477 "memory/memory_pressure_listener.cc", | 478 "memory/memory_pressure_listener.cc", |
| 478 "memory/memory_pressure_listener.h", | 479 "memory/memory_pressure_listener.h", |
| 479 "memory/memory_pressure_monitor.cc", | 480 "memory/memory_pressure_monitor.cc", |
| 480 "memory/memory_pressure_monitor.h", | 481 "memory/memory_pressure_monitor.h", |
| 481 "memory/memory_pressure_monitor_chromeos.cc", | 482 "memory/memory_pressure_monitor_chromeos.cc", |
| (...skipping 1981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2463 } | 2464 } |
| 2464 | 2465 |
| 2465 fuzzer_test("base_json_correctness_fuzzer") { | 2466 fuzzer_test("base_json_correctness_fuzzer") { |
| 2466 sources = [ | 2467 sources = [ |
| 2467 "json/correctness_fuzzer.cc", | 2468 "json/correctness_fuzzer.cc", |
| 2468 ] | 2469 ] |
| 2469 deps = [ | 2470 deps = [ |
| 2470 ":base", | 2471 ":base", |
| 2471 ] | 2472 ] |
| 2472 } | 2473 } |
| OLD | NEW |