| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 "file_descriptor_posix.h", | 311 "file_descriptor_posix.h", |
| 312 "file_version_info.h", | 312 "file_version_info.h", |
| 313 "file_version_info_mac.h", | 313 "file_version_info_mac.h", |
| 314 "file_version_info_mac.mm", | 314 "file_version_info_mac.mm", |
| 315 "file_version_info_win.cc", | 315 "file_version_info_win.cc", |
| 316 "file_version_info_win.h", | 316 "file_version_info_win.h", |
| 317 "files/dir_reader_fallback.h", | 317 "files/dir_reader_fallback.h", |
| 318 "files/dir_reader_linux.h", | 318 "files/dir_reader_linux.h", |
| 319 "files/dir_reader_posix.h", | 319 "files/dir_reader_posix.h", |
| 320 "files/file.cc", | 320 "files/file.cc", |
| 321 "files/file.h", |
| 321 "files/file_descriptor_watcher_posix.cc", | 322 "files/file_descriptor_watcher_posix.cc", |
| 322 "files/file_descriptor_watcher_posix.h", | 323 "files/file_descriptor_watcher_posix.h", |
| 323 "files/file_enumerator.cc", | 324 "files/file_enumerator.cc", |
| 324 "files/file_enumerator.h", | 325 "files/file_enumerator.h", |
| 325 "files/file_enumerator_posix.cc", | 326 "files/file_enumerator_posix.cc", |
| 326 "files/file_enumerator_win.cc", | 327 "files/file_enumerator_win.cc", |
| 327 "files/file_path.cc", | 328 "files/file_path.cc", |
| 328 "files/file_path.h", | 329 "files/file_path.h", |
| 329 "files/file_path_constants.cc", | 330 "files/file_path_constants.cc", |
| 330 "files/file_path_watcher.cc", | 331 "files/file_path_watcher.cc", |
| (...skipping 2171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2502 } | 2503 } |
| 2503 | 2504 |
| 2504 fuzzer_test("base_json_correctness_fuzzer") { | 2505 fuzzer_test("base_json_correctness_fuzzer") { |
| 2505 sources = [ | 2506 sources = [ |
| 2506 "json/correctness_fuzzer.cc", | 2507 "json/correctness_fuzzer.cc", |
| 2507 ] | 2508 ] |
| 2508 deps = [ | 2509 deps = [ |
| 2509 ":base", | 2510 ":base", |
| 2510 ] | 2511 ] |
| 2511 } | 2512 } |
| OLD | NEW |