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 2014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2025 "debug/proc_maps_linux_unittest.cc", | 2025 "debug/proc_maps_linux_unittest.cc", |
2026 "debug/stack_trace_unittest.cc", | 2026 "debug/stack_trace_unittest.cc", |
2027 "debug/task_annotator_unittest.cc", | 2027 "debug/task_annotator_unittest.cc", |
2028 "debug/thread_heap_usage_tracker_unittest.cc", | 2028 "debug/thread_heap_usage_tracker_unittest.cc", |
2029 "deferred_sequenced_task_runner_unittest.cc", | 2029 "deferred_sequenced_task_runner_unittest.cc", |
2030 "environment_unittest.cc", | 2030 "environment_unittest.cc", |
2031 "feature_list_unittest.cc", | 2031 "feature_list_unittest.cc", |
2032 "file_version_info_win_unittest.cc", | 2032 "file_version_info_win_unittest.cc", |
2033 "files/dir_reader_posix_unittest.cc", | 2033 "files/dir_reader_posix_unittest.cc", |
2034 "files/file_descriptor_watcher_posix_unittest.cc", | 2034 "files/file_descriptor_watcher_posix_unittest.cc", |
| 2035 "files/file_enumerator_unittest.cc", |
2035 "files/file_locking_unittest.cc", | 2036 "files/file_locking_unittest.cc", |
2036 "files/file_path_unittest.cc", | 2037 "files/file_path_unittest.cc", |
2037 "files/file_path_watcher_unittest.cc", | 2038 "files/file_path_watcher_unittest.cc", |
2038 "files/file_proxy_unittest.cc", | 2039 "files/file_proxy_unittest.cc", |
2039 "files/file_unittest.cc", | 2040 "files/file_unittest.cc", |
2040 "files/file_util_proxy_unittest.cc", | 2041 "files/file_util_proxy_unittest.cc", |
2041 "files/file_util_unittest.cc", | 2042 "files/file_util_unittest.cc", |
2042 "files/important_file_writer_unittest.cc", | 2043 "files/important_file_writer_unittest.cc", |
2043 "files/memory_mapped_file_unittest.cc", | 2044 "files/memory_mapped_file_unittest.cc", |
2044 "files/scoped_platform_handle_unittest.cc", | 2045 "files/scoped_platform_handle_unittest.cc", |
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2801 } | 2802 } |
2802 | 2803 |
2803 fuzzer_test("base_json_correctness_fuzzer") { | 2804 fuzzer_test("base_json_correctness_fuzzer") { |
2804 sources = [ | 2805 sources = [ |
2805 "json/correctness_fuzzer.cc", | 2806 "json/correctness_fuzzer.cc", |
2806 ] | 2807 ] |
2807 deps = [ | 2808 deps = [ |
2808 ":base", | 2809 ":base", |
2809 ] | 2810 ] |
2810 } | 2811 } |
OLD | NEW |