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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 "memory/ref_counted_delete_on_message_loop.h", | 504 "memory/ref_counted_delete_on_message_loop.h", |
505 "memory/ref_counted_memory.cc", | 505 "memory/ref_counted_memory.cc", |
506 "memory/ref_counted_memory.h", | 506 "memory/ref_counted_memory.h", |
507 "memory/scoped_policy.h", | 507 "memory/scoped_policy.h", |
508 "memory/scoped_vector.h", | 508 "memory/scoped_vector.h", |
509 "memory/shared_memory.h", | 509 "memory/shared_memory.h", |
510 "memory/shared_memory_android.cc", | 510 "memory/shared_memory_android.cc", |
511 "memory/shared_memory_handle.h", | 511 "memory/shared_memory_handle.h", |
512 "memory/shared_memory_handle_mac.cc", | 512 "memory/shared_memory_handle_mac.cc", |
513 "memory/shared_memory_handle_win.cc", | 513 "memory/shared_memory_handle_win.cc", |
| 514 "memory/shared_memory_helper.cc", |
| 515 "memory/shared_memory_helper.h", |
514 "memory/shared_memory_mac.cc", | 516 "memory/shared_memory_mac.cc", |
515 "memory/shared_memory_nacl.cc", | 517 "memory/shared_memory_nacl.cc", |
516 "memory/shared_memory_posix.cc", | 518 "memory/shared_memory_posix.cc", |
517 "memory/shared_memory_win.cc", | 519 "memory/shared_memory_win.cc", |
518 "memory/singleton.cc", | 520 "memory/singleton.cc", |
519 "memory/singleton.h", | 521 "memory/singleton.h", |
520 "memory/weak_ptr.cc", | 522 "memory/weak_ptr.cc", |
521 "memory/weak_ptr.h", | 523 "memory/weak_ptr.h", |
522 "message_loop/incoming_task_queue.cc", | 524 "message_loop/incoming_task_queue.cc", |
523 "message_loop/incoming_task_queue.h", | 525 "message_loop/incoming_task_queue.h", |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1158 "files/file_util_proxy.cc", | 1160 "files/file_util_proxy.cc", |
1159 "files/important_file_writer.cc", | 1161 "files/important_file_writer.cc", |
1160 "files/important_file_writer.h", | 1162 "files/important_file_writer.h", |
1161 "files/scoped_temp_dir.cc", | 1163 "files/scoped_temp_dir.cc", |
1162 "memory/discardable_memory.cc", | 1164 "memory/discardable_memory.cc", |
1163 "memory/discardable_memory.h", | 1165 "memory/discardable_memory.h", |
1164 "memory/discardable_memory_allocator.cc", | 1166 "memory/discardable_memory_allocator.cc", |
1165 "memory/discardable_memory_allocator.h", | 1167 "memory/discardable_memory_allocator.h", |
1166 "memory/discardable_shared_memory.cc", | 1168 "memory/discardable_shared_memory.cc", |
1167 "memory/discardable_shared_memory.h", | 1169 "memory/discardable_shared_memory.h", |
| 1170 "memory/shared_memory_helper.cc", |
| 1171 "memory/shared_memory_helper.h", |
1168 "memory/shared_memory_posix.cc", | 1172 "memory/shared_memory_posix.cc", |
1169 "native_library.cc", | 1173 "native_library.cc", |
1170 "native_library_posix.cc", | 1174 "native_library_posix.cc", |
1171 "path_service.cc", | 1175 "path_service.cc", |
1172 "process/kill.cc", | 1176 "process/kill.cc", |
1173 "process/kill.h", | 1177 "process/kill.h", |
1174 "process/memory.cc", | 1178 "process/memory.cc", |
1175 "process/memory.h", | 1179 "process/memory.h", |
1176 "process/process_iterator.cc", | 1180 "process/process_iterator.cc", |
1177 "process/process_iterator.h", | 1181 "process/process_iterator.h", |
(...skipping 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2526 } | 2530 } |
2527 | 2531 |
2528 fuzzer_test("base_json_correctness_fuzzer") { | 2532 fuzzer_test("base_json_correctness_fuzzer") { |
2529 sources = [ | 2533 sources = [ |
2530 "json/correctness_fuzzer.cc", | 2534 "json/correctness_fuzzer.cc", |
2531 ] | 2535 ] |
2532 deps = [ | 2536 deps = [ |
2533 ":base", | 2537 ":base", |
2534 ] | 2538 ] |
2535 } | 2539 } |
OLD | NEW |