| 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 1993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2004 "debug/proc_maps_linux_unittest.cc", | 2004 "debug/proc_maps_linux_unittest.cc", |
| 2005 "debug/stack_trace_unittest.cc", | 2005 "debug/stack_trace_unittest.cc", |
| 2006 "debug/task_annotator_unittest.cc", | 2006 "debug/task_annotator_unittest.cc", |
| 2007 "debug/thread_heap_usage_tracker_unittest.cc", | 2007 "debug/thread_heap_usage_tracker_unittest.cc", |
| 2008 "deferred_sequenced_task_runner_unittest.cc", | 2008 "deferred_sequenced_task_runner_unittest.cc", |
| 2009 "environment_unittest.cc", | 2009 "environment_unittest.cc", |
| 2010 "feature_list_unittest.cc", | 2010 "feature_list_unittest.cc", |
| 2011 "file_version_info_win_unittest.cc", | 2011 "file_version_info_win_unittest.cc", |
| 2012 "files/dir_reader_posix_unittest.cc", | 2012 "files/dir_reader_posix_unittest.cc", |
| 2013 "files/file_descriptor_watcher_posix_unittest.cc", | 2013 "files/file_descriptor_watcher_posix_unittest.cc", |
| 2014 "files/file_enumerator_unittest.cc", |
| 2014 "files/file_locking_unittest.cc", | 2015 "files/file_locking_unittest.cc", |
| 2015 "files/file_path_unittest.cc", | 2016 "files/file_path_unittest.cc", |
| 2016 "files/file_path_watcher_unittest.cc", | 2017 "files/file_path_watcher_unittest.cc", |
| 2017 "files/file_proxy_unittest.cc", | 2018 "files/file_proxy_unittest.cc", |
| 2018 "files/file_unittest.cc", | 2019 "files/file_unittest.cc", |
| 2019 "files/file_util_proxy_unittest.cc", | 2020 "files/file_util_proxy_unittest.cc", |
| 2020 "files/file_util_unittest.cc", | 2021 "files/file_util_unittest.cc", |
| 2021 "files/important_file_writer_unittest.cc", | 2022 "files/important_file_writer_unittest.cc", |
| 2022 "files/memory_mapped_file_unittest.cc", | 2023 "files/memory_mapped_file_unittest.cc", |
| 2023 "files/scoped_platform_handle_unittest.cc", | 2024 "files/scoped_platform_handle_unittest.cc", |
| (...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2766 } | 2767 } |
| 2767 | 2768 |
| 2768 fuzzer_test("base_json_correctness_fuzzer") { | 2769 fuzzer_test("base_json_correctness_fuzzer") { |
| 2769 sources = [ | 2770 sources = [ |
| 2770 "json/correctness_fuzzer.cc", | 2771 "json/correctness_fuzzer.cc", |
| 2771 ] | 2772 ] |
| 2772 deps = [ | 2773 deps = [ |
| 2773 ":base", | 2774 ":base", |
| 2774 ] | 2775 ] |
| 2775 } | 2776 } |
| OLD | NEW |