| 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 "files/file_util_win.cc", | 377 "files/file_util_win.cc", |
| 378 "files/file_win.cc", | 378 "files/file_win.cc", |
| 379 "files/important_file_writer.cc", | 379 "files/important_file_writer.cc", |
| 380 "files/important_file_writer.h", | 380 "files/important_file_writer.h", |
| 381 "files/memory_mapped_file.cc", | 381 "files/memory_mapped_file.cc", |
| 382 "files/memory_mapped_file.h", | 382 "files/memory_mapped_file.h", |
| 383 "files/memory_mapped_file_posix.cc", | 383 "files/memory_mapped_file_posix.cc", |
| 384 "files/memory_mapped_file_win.cc", | 384 "files/memory_mapped_file_win.cc", |
| 385 "files/scoped_file.cc", | 385 "files/scoped_file.cc", |
| 386 "files/scoped_file.h", | 386 "files/scoped_file.h", |
| 387 "files/scoped_platform_handle.cc", |
| 388 "files/scoped_platform_handle.h", |
| 387 "files/scoped_temp_dir.cc", | 389 "files/scoped_temp_dir.cc", |
| 388 "files/scoped_temp_dir.h", | 390 "files/scoped_temp_dir.h", |
| 389 "format_macros.h", | 391 "format_macros.h", |
| 390 "gtest_prod_util.h", | 392 "gtest_prod_util.h", |
| 391 "guid.cc", | 393 "guid.cc", |
| 392 "guid.h", | 394 "guid.h", |
| 393 "hash.cc", | 395 "hash.cc", |
| 394 "hash.h", | 396 "hash.h", |
| 395 "id_map.h", | 397 "id_map.h", |
| 396 "ios/block_types.h", | 398 "ios/block_types.h", |
| (...skipping 1538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1935 "files/file_descriptor_watcher_posix_unittest.cc", | 1937 "files/file_descriptor_watcher_posix_unittest.cc", |
| 1936 "files/file_locking_unittest.cc", | 1938 "files/file_locking_unittest.cc", |
| 1937 "files/file_path_unittest.cc", | 1939 "files/file_path_unittest.cc", |
| 1938 "files/file_path_watcher_unittest.cc", | 1940 "files/file_path_watcher_unittest.cc", |
| 1939 "files/file_proxy_unittest.cc", | 1941 "files/file_proxy_unittest.cc", |
| 1940 "files/file_unittest.cc", | 1942 "files/file_unittest.cc", |
| 1941 "files/file_util_proxy_unittest.cc", | 1943 "files/file_util_proxy_unittest.cc", |
| 1942 "files/file_util_unittest.cc", | 1944 "files/file_util_unittest.cc", |
| 1943 "files/important_file_writer_unittest.cc", | 1945 "files/important_file_writer_unittest.cc", |
| 1944 "files/memory_mapped_file_unittest.cc", | 1946 "files/memory_mapped_file_unittest.cc", |
| 1947 "files/scoped_platform_handle_unittest.cc", |
| 1945 "files/scoped_temp_dir_unittest.cc", | 1948 "files/scoped_temp_dir_unittest.cc", |
| 1946 "gmock_unittest.cc", | 1949 "gmock_unittest.cc", |
| 1947 "guid_unittest.cc", | 1950 "guid_unittest.cc", |
| 1948 "hash_unittest.cc", | 1951 "hash_unittest.cc", |
| 1949 "i18n/break_iterator_unittest.cc", | 1952 "i18n/break_iterator_unittest.cc", |
| 1950 "i18n/case_conversion_unittest.cc", | 1953 "i18n/case_conversion_unittest.cc", |
| 1951 "i18n/char_iterator_unittest.cc", | 1954 "i18n/char_iterator_unittest.cc", |
| 1952 "i18n/character_encoding_unittest.cc", | 1955 "i18n/character_encoding_unittest.cc", |
| 1953 "i18n/file_util_icu_unittest.cc", | 1956 "i18n/file_util_icu_unittest.cc", |
| 1954 "i18n/icu_string_conversions_unittest.cc", | 1957 "i18n/icu_string_conversions_unittest.cc", |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2650 } | 2653 } |
| 2651 | 2654 |
| 2652 fuzzer_test("base_json_correctness_fuzzer") { | 2655 fuzzer_test("base_json_correctness_fuzzer") { |
| 2653 sources = [ | 2656 sources = [ |
| 2654 "json/correctness_fuzzer.cc", | 2657 "json/correctness_fuzzer.cc", |
| 2655 ] | 2658 ] |
| 2656 deps = [ | 2659 deps = [ |
| 2657 ":base", | 2660 ":base", |
| 2658 ] | 2661 ] |
| 2659 } | 2662 } |
| OLD | NEW |