| 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 "memory/raw_scoped_refptr_mismatch_checker.h", | 500 "memory/raw_scoped_refptr_mismatch_checker.h", |
| 501 "memory/ref_counted.cc", | 501 "memory/ref_counted.cc", |
| 502 "memory/ref_counted.h", | 502 "memory/ref_counted.h", |
| 503 "memory/ref_counted_delete_on_sequence.h", | 503 "memory/ref_counted_delete_on_sequence.h", |
| 504 "memory/ref_counted_memory.cc", | 504 "memory/ref_counted_memory.cc", |
| 505 "memory/ref_counted_memory.h", | 505 "memory/ref_counted_memory.h", |
| 506 "memory/scoped_policy.h", | 506 "memory/scoped_policy.h", |
| 507 "memory/scoped_vector.h", | 507 "memory/scoped_vector.h", |
| 508 "memory/shared_memory.h", | 508 "memory/shared_memory.h", |
| 509 "memory/shared_memory_android.cc", | 509 "memory/shared_memory_android.cc", |
| 510 "memory/shared_memory_handle.cc", |
| 510 "memory/shared_memory_handle.h", | 511 "memory/shared_memory_handle.h", |
| 511 "memory/shared_memory_handle_mac.cc", | 512 "memory/shared_memory_handle_mac.cc", |
| 512 "memory/shared_memory_handle_win.cc", | 513 "memory/shared_memory_handle_win.cc", |
| 513 "memory/shared_memory_helper.cc", | 514 "memory/shared_memory_helper.cc", |
| 514 "memory/shared_memory_helper.h", | 515 "memory/shared_memory_helper.h", |
| 515 "memory/shared_memory_mac.cc", | 516 "memory/shared_memory_mac.cc", |
| 516 "memory/shared_memory_nacl.cc", | 517 "memory/shared_memory_nacl.cc", |
| 517 "memory/shared_memory_posix.cc", | 518 "memory/shared_memory_posix.cc", |
| 518 "memory/shared_memory_win.cc", | 519 "memory/shared_memory_win.cc", |
| 519 "memory/singleton.cc", | 520 "memory/singleton.cc", |
| (...skipping 2187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2707 } | 2708 } |
| 2708 | 2709 |
| 2709 fuzzer_test("base_json_correctness_fuzzer") { | 2710 fuzzer_test("base_json_correctness_fuzzer") { |
| 2710 sources = [ | 2711 sources = [ |
| 2711 "json/correctness_fuzzer.cc", | 2712 "json/correctness_fuzzer.cc", |
| 2712 ] | 2713 ] |
| 2713 deps = [ | 2714 deps = [ |
| 2714 ":base", | 2715 ":base", |
| 2715 ] | 2716 ] |
| 2716 } | 2717 } |
| OLD | NEW |