| 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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 "sys_info_win.cc", | 783 "sys_info_win.cc", |
| 784 "system_monitor/system_monitor.cc", | 784 "system_monitor/system_monitor.cc", |
| 785 "system_monitor/system_monitor.h", | 785 "system_monitor/system_monitor.h", |
| 786 "task/cancelable_task_tracker.cc", | 786 "task/cancelable_task_tracker.cc", |
| 787 "task/cancelable_task_tracker.h", | 787 "task/cancelable_task_tracker.h", |
| 788 "task_runner.cc", | 788 "task_runner.cc", |
| 789 "task_runner.h", | 789 "task_runner.h", |
| 790 "task_runner_util.h", | 790 "task_runner_util.h", |
| 791 "task_scheduler/delayed_task_manager.cc", | 791 "task_scheduler/delayed_task_manager.cc", |
| 792 "task_scheduler/delayed_task_manager.h", | 792 "task_scheduler/delayed_task_manager.h", |
| 793 "task_scheduler/initialization_util.cc", |
| 794 "task_scheduler/initialization_util.h", |
| 793 "task_scheduler/post_task.cc", | 795 "task_scheduler/post_task.cc", |
| 794 "task_scheduler/post_task.h", | 796 "task_scheduler/post_task.h", |
| 795 "task_scheduler/priority_queue.cc", | 797 "task_scheduler/priority_queue.cc", |
| 796 "task_scheduler/priority_queue.h", | 798 "task_scheduler/priority_queue.h", |
| 797 "task_scheduler/scheduler_lock.h", | 799 "task_scheduler/scheduler_lock.h", |
| 798 "task_scheduler/scheduler_lock_impl.cc", | 800 "task_scheduler/scheduler_lock_impl.cc", |
| 799 "task_scheduler/scheduler_lock_impl.h", | 801 "task_scheduler/scheduler_lock_impl.h", |
| 800 "task_scheduler/scheduler_worker.cc", | 802 "task_scheduler/scheduler_worker.cc", |
| 801 "task_scheduler/scheduler_worker.h", | 803 "task_scheduler/scheduler_worker.h", |
| 802 "task_scheduler/scheduler_worker_pool.h", | 804 "task_scheduler/scheduler_worker_pool.h", |
| (...skipping 1681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2484 } | 2486 } |
| 2485 | 2487 |
| 2486 fuzzer_test("base_json_correctness_fuzzer") { | 2488 fuzzer_test("base_json_correctness_fuzzer") { |
| 2487 sources = [ | 2489 sources = [ |
| 2488 "json/correctness_fuzzer.cc", | 2490 "json/correctness_fuzzer.cc", |
| 2489 ] | 2491 ] |
| 2490 deps = [ | 2492 deps = [ |
| 2491 ":base", | 2493 ":base", |
| 2492 ] | 2494 ] |
| 2493 } | 2495 } |
| OLD | NEW |