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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 "debug/thread_heap_usage_tracker.cc", | 323 "debug/thread_heap_usage_tracker.cc", |
324 "debug/thread_heap_usage_tracker.h", | 324 "debug/thread_heap_usage_tracker.h", |
325 "deferred_sequenced_task_runner.cc", | 325 "deferred_sequenced_task_runner.cc", |
326 "deferred_sequenced_task_runner.h", | 326 "deferred_sequenced_task_runner.h", |
327 "environment.cc", | 327 "environment.cc", |
328 "environment.h", | 328 "environment.h", |
329 "event_types.h", | 329 "event_types.h", |
330 "feature_list.cc", | 330 "feature_list.cc", |
331 "feature_list.h", | 331 "feature_list.h", |
332 "file_descriptor_posix.h", | 332 "file_descriptor_posix.h", |
| 333 "file_descriptor_store.cc", |
| 334 "file_descriptor_store.h", |
333 "file_version_info.h", | 335 "file_version_info.h", |
334 "file_version_info_mac.h", | 336 "file_version_info_mac.h", |
335 "file_version_info_mac.mm", | 337 "file_version_info_mac.mm", |
336 "file_version_info_win.cc", | 338 "file_version_info_win.cc", |
337 "file_version_info_win.h", | 339 "file_version_info_win.h", |
338 "files/dir_reader_fallback.h", | 340 "files/dir_reader_fallback.h", |
339 "files/dir_reader_linux.h", | 341 "files/dir_reader_linux.h", |
340 "files/dir_reader_posix.h", | 342 "files/dir_reader_posix.h", |
341 "files/file.cc", | 343 "files/file.cc", |
342 "files/file.h", | 344 "files/file.h", |
(...skipping 2294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2637 } | 2639 } |
2638 | 2640 |
2639 fuzzer_test("base_json_correctness_fuzzer") { | 2641 fuzzer_test("base_json_correctness_fuzzer") { |
2640 sources = [ | 2642 sources = [ |
2641 "json/correctness_fuzzer.cc", | 2643 "json/correctness_fuzzer.cc", |
2642 ] | 2644 ] |
2643 deps = [ | 2645 deps = [ |
2644 ":base", | 2646 ":base", |
2645 ] | 2647 ] |
2646 } | 2648 } |
OLD | NEW |