| 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 2200 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2720 } | 2721 } | 
| 2721 | 2722 | 
| 2722 fuzzer_test("base_json_correctness_fuzzer") { | 2723 fuzzer_test("base_json_correctness_fuzzer") { | 
| 2723   sources = [ | 2724   sources = [ | 
| 2724     "json/correctness_fuzzer.cc", | 2725     "json/correctness_fuzzer.cc", | 
| 2725   ] | 2726   ] | 
| 2726   deps = [ | 2727   deps = [ | 
| 2727     ":base", | 2728     ":base", | 
| 2728   ] | 2729   ] | 
| 2729 } | 2730 } | 
| OLD | NEW | 
|---|