| 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 "files/memory_mapped_file_win.cc", | 353 "files/memory_mapped_file_win.cc", |
| 354 "files/scoped_file.cc", | 354 "files/scoped_file.cc", |
| 355 "files/scoped_file.h", | 355 "files/scoped_file.h", |
| 356 "files/scoped_platform_handle.cc", | 356 "files/scoped_platform_handle.cc", |
| 357 "files/scoped_platform_handle.h", | 357 "files/scoped_platform_handle.h", |
| 358 "files/scoped_platform_handle_posix.cc", | 358 "files/scoped_platform_handle_posix.cc", |
| 359 "files/scoped_platform_handle_win.cc", | 359 "files/scoped_platform_handle_win.cc", |
| 360 "files/scoped_temp_dir.cc", | 360 "files/scoped_temp_dir.cc", |
| 361 "files/scoped_temp_dir.h", | 361 "files/scoped_temp_dir.h", |
| 362 "format_macros.h", | 362 "format_macros.h", |
| 363 "functional.h", |
| 363 "gtest_prod_util.h", | 364 "gtest_prod_util.h", |
| 364 "guid.cc", | 365 "guid.cc", |
| 365 "guid.h", | 366 "guid.h", |
| 366 "hash.cc", | 367 "hash.cc", |
| 367 "hash.h", | 368 "hash.h", |
| 368 "id_map.h", | 369 "id_map.h", |
| 369 "ios/block_types.h", | 370 "ios/block_types.h", |
| 370 "ios/crb_protocol_observers.h", | 371 "ios/crb_protocol_observers.h", |
| 371 "ios/crb_protocol_observers.mm", | 372 "ios/crb_protocol_observers.mm", |
| 372 "ios/device_util.h", | 373 "ios/device_util.h", |
| (...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2032 "files/file_path_unittest.cc", | 2033 "files/file_path_unittest.cc", |
| 2033 "files/file_path_watcher_unittest.cc", | 2034 "files/file_path_watcher_unittest.cc", |
| 2034 "files/file_proxy_unittest.cc", | 2035 "files/file_proxy_unittest.cc", |
| 2035 "files/file_unittest.cc", | 2036 "files/file_unittest.cc", |
| 2036 "files/file_util_proxy_unittest.cc", | 2037 "files/file_util_proxy_unittest.cc", |
| 2037 "files/file_util_unittest.cc", | 2038 "files/file_util_unittest.cc", |
| 2038 "files/important_file_writer_unittest.cc", | 2039 "files/important_file_writer_unittest.cc", |
| 2039 "files/memory_mapped_file_unittest.cc", | 2040 "files/memory_mapped_file_unittest.cc", |
| 2040 "files/scoped_platform_handle_unittest.cc", | 2041 "files/scoped_platform_handle_unittest.cc", |
| 2041 "files/scoped_temp_dir_unittest.cc", | 2042 "files/scoped_temp_dir_unittest.cc", |
| 2043 "functional_unittest.cc", |
| 2042 "gmock_unittest.cc", | 2044 "gmock_unittest.cc", |
| 2043 "guid_unittest.cc", | 2045 "guid_unittest.cc", |
| 2044 "hash_unittest.cc", | 2046 "hash_unittest.cc", |
| 2045 "i18n/break_iterator_unittest.cc", | 2047 "i18n/break_iterator_unittest.cc", |
| 2046 "i18n/case_conversion_unittest.cc", | 2048 "i18n/case_conversion_unittest.cc", |
| 2047 "i18n/char_iterator_unittest.cc", | 2049 "i18n/char_iterator_unittest.cc", |
| 2048 "i18n/character_encoding_unittest.cc", | 2050 "i18n/character_encoding_unittest.cc", |
| 2049 "i18n/file_util_icu_unittest.cc", | 2051 "i18n/file_util_icu_unittest.cc", |
| 2050 "i18n/icu_string_conversions_unittest.cc", | 2052 "i18n/icu_string_conversions_unittest.cc", |
| 2051 "i18n/message_formatter_unittest.cc", | 2053 "i18n/message_formatter_unittest.cc", |
| (...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2796 } | 2798 } |
| 2797 | 2799 |
| 2798 fuzzer_test("base_json_correctness_fuzzer") { | 2800 fuzzer_test("base_json_correctness_fuzzer") { |
| 2799 sources = [ | 2801 sources = [ |
| 2800 "json/correctness_fuzzer.cc", | 2802 "json/correctness_fuzzer.cc", |
| 2801 ] | 2803 ] |
| 2802 deps = [ | 2804 deps = [ |
| 2803 ":base", | 2805 ":base", |
| 2804 ] | 2806 ] |
| 2805 } | 2807 } |
| OLD | NEW |