| 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 "memory/memory_pressure_monitor_chromeos.cc", | 498 "memory/memory_pressure_monitor_chromeos.cc", |
| 499 "memory/memory_pressure_monitor_chromeos.h", | 499 "memory/memory_pressure_monitor_chromeos.h", |
| 500 "memory/memory_pressure_monitor_mac.cc", | 500 "memory/memory_pressure_monitor_mac.cc", |
| 501 "memory/memory_pressure_monitor_mac.h", | 501 "memory/memory_pressure_monitor_mac.h", |
| 502 "memory/memory_pressure_monitor_win.cc", | 502 "memory/memory_pressure_monitor_win.cc", |
| 503 "memory/memory_pressure_monitor_win.h", | 503 "memory/memory_pressure_monitor_win.h", |
| 504 "memory/ptr_util.h", | 504 "memory/ptr_util.h", |
| 505 "memory/raw_scoped_refptr_mismatch_checker.h", | 505 "memory/raw_scoped_refptr_mismatch_checker.h", |
| 506 "memory/ref_counted.cc", | 506 "memory/ref_counted.cc", |
| 507 "memory/ref_counted.h", | 507 "memory/ref_counted.h", |
| 508 "memory/ref_counted_delete_on_message_loop.h", | 508 "memory/ref_counted_delete_on_sequence.h", |
| 509 "memory/ref_counted_memory.cc", | 509 "memory/ref_counted_memory.cc", |
| 510 "memory/ref_counted_memory.h", | 510 "memory/ref_counted_memory.h", |
| 511 "memory/scoped_policy.h", | 511 "memory/scoped_policy.h", |
| 512 "memory/scoped_vector.h", | 512 "memory/scoped_vector.h", |
| 513 "memory/shared_memory.h", | 513 "memory/shared_memory.h", |
| 514 "memory/shared_memory_android.cc", | 514 "memory/shared_memory_android.cc", |
| 515 "memory/shared_memory_handle.h", | 515 "memory/shared_memory_handle.h", |
| 516 "memory/shared_memory_handle_mac.cc", | 516 "memory/shared_memory_handle_mac.cc", |
| 517 "memory/shared_memory_handle_win.cc", | 517 "memory/shared_memory_handle_win.cc", |
| 518 "memory/shared_memory_helper.cc", | 518 "memory/shared_memory_helper.cc", |
| (...skipping 2045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2564 } | 2564 } |
| 2565 | 2565 |
| 2566 fuzzer_test("base_json_correctness_fuzzer") { | 2566 fuzzer_test("base_json_correctness_fuzzer") { |
| 2567 sources = [ | 2567 sources = [ |
| 2568 "json/correctness_fuzzer.cc", | 2568 "json/correctness_fuzzer.cc", |
| 2569 ] | 2569 ] |
| 2570 deps = [ | 2570 deps = [ |
| 2571 ":base", | 2571 ":base", |
| 2572 ] | 2572 ] |
| 2573 } | 2573 } |
| OLD | NEW |