| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "files/memory_mapped_file_win.cc", | 351 "files/memory_mapped_file_win.cc", |
| 352 "files/scoped_file.cc", | 352 "files/scoped_file.cc", |
| 353 "files/scoped_file.h", | 353 "files/scoped_file.h", |
| 354 "files/scoped_platform_handle.cc", | 354 "files/scoped_platform_handle.cc", |
| 355 "files/scoped_platform_handle.h", | 355 "files/scoped_platform_handle.h", |
| 356 "files/scoped_platform_handle_posix.cc", | 356 "files/scoped_platform_handle_posix.cc", |
| 357 "files/scoped_platform_handle_win.cc", | 357 "files/scoped_platform_handle_win.cc", |
| 358 "files/scoped_temp_dir.cc", | 358 "files/scoped_temp_dir.cc", |
| 359 "files/scoped_temp_dir.h", | 359 "files/scoped_temp_dir.h", |
| 360 "format_macros.h", | 360 "format_macros.h", |
| 361 "functional.h", |
| 361 "gtest_prod_util.h", | 362 "gtest_prod_util.h", |
| 362 "guid.cc", | 363 "guid.cc", |
| 363 "guid.h", | 364 "guid.h", |
| 364 "hash.cc", | 365 "hash.cc", |
| 365 "hash.h", | 366 "hash.h", |
| 366 "id_map.h", | 367 "id_map.h", |
| 367 "ios/block_types.h", | 368 "ios/block_types.h", |
| 368 "ios/crb_protocol_observers.h", | 369 "ios/crb_protocol_observers.h", |
| 369 "ios/crb_protocol_observers.mm", | 370 "ios/crb_protocol_observers.mm", |
| 370 "ios/device_util.h", | 371 "ios/device_util.h", |
| (...skipping 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2023 "files/file_path_unittest.cc", | 2024 "files/file_path_unittest.cc", |
| 2024 "files/file_path_watcher_unittest.cc", | 2025 "files/file_path_watcher_unittest.cc", |
| 2025 "files/file_proxy_unittest.cc", | 2026 "files/file_proxy_unittest.cc", |
| 2026 "files/file_unittest.cc", | 2027 "files/file_unittest.cc", |
| 2027 "files/file_util_proxy_unittest.cc", | 2028 "files/file_util_proxy_unittest.cc", |
| 2028 "files/file_util_unittest.cc", | 2029 "files/file_util_unittest.cc", |
| 2029 "files/important_file_writer_unittest.cc", | 2030 "files/important_file_writer_unittest.cc", |
| 2030 "files/memory_mapped_file_unittest.cc", | 2031 "files/memory_mapped_file_unittest.cc", |
| 2031 "files/scoped_platform_handle_unittest.cc", | 2032 "files/scoped_platform_handle_unittest.cc", |
| 2032 "files/scoped_temp_dir_unittest.cc", | 2033 "files/scoped_temp_dir_unittest.cc", |
| 2034 "functional_unittest.cc", |
| 2033 "gmock_unittest.cc", | 2035 "gmock_unittest.cc", |
| 2034 "guid_unittest.cc", | 2036 "guid_unittest.cc", |
| 2035 "hash_unittest.cc", | 2037 "hash_unittest.cc", |
| 2036 "i18n/break_iterator_unittest.cc", | 2038 "i18n/break_iterator_unittest.cc", |
| 2037 "i18n/case_conversion_unittest.cc", | 2039 "i18n/case_conversion_unittest.cc", |
| 2038 "i18n/char_iterator_unittest.cc", | 2040 "i18n/char_iterator_unittest.cc", |
| 2039 "i18n/character_encoding_unittest.cc", | 2041 "i18n/character_encoding_unittest.cc", |
| 2040 "i18n/file_util_icu_unittest.cc", | 2042 "i18n/file_util_icu_unittest.cc", |
| 2041 "i18n/icu_string_conversions_unittest.cc", | 2043 "i18n/icu_string_conversions_unittest.cc", |
| 2042 "i18n/message_formatter_unittest.cc", | 2044 "i18n/message_formatter_unittest.cc", |
| (...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2779 } | 2781 } |
| 2780 | 2782 |
| 2781 fuzzer_test("base_json_correctness_fuzzer") { | 2783 fuzzer_test("base_json_correctness_fuzzer") { |
| 2782 sources = [ | 2784 sources = [ |
| 2783 "json/correctness_fuzzer.cc", | 2785 "json/correctness_fuzzer.cc", |
| 2784 ] | 2786 ] |
| 2785 deps = [ | 2787 deps = [ |
| 2786 ":base", | 2788 ":base", |
| 2787 ] | 2789 ] |
| 2788 } | 2790 } |
| OLD | NEW |