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