| 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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 840 "task_scheduler/scheduler_worker_pool_params.cc", | 840 "task_scheduler/scheduler_worker_pool_params.cc", |
| 841 "task_scheduler/scheduler_worker_pool_params.h", | 841 "task_scheduler/scheduler_worker_pool_params.h", |
| 842 "task_scheduler/scheduler_worker_stack.cc", | 842 "task_scheduler/scheduler_worker_stack.cc", |
| 843 "task_scheduler/scheduler_worker_stack.h", | 843 "task_scheduler/scheduler_worker_stack.h", |
| 844 "task_scheduler/scoped_set_task_priority_for_current_thread.cc", | 844 "task_scheduler/scoped_set_task_priority_for_current_thread.cc", |
| 845 "task_scheduler/scoped_set_task_priority_for_current_thread.h", | 845 "task_scheduler/scoped_set_task_priority_for_current_thread.h", |
| 846 "task_scheduler/sequence.cc", | 846 "task_scheduler/sequence.cc", |
| 847 "task_scheduler/sequence.h", | 847 "task_scheduler/sequence.h", |
| 848 "task_scheduler/sequence_sort_key.cc", | 848 "task_scheduler/sequence_sort_key.cc", |
| 849 "task_scheduler/sequence_sort_key.h", | 849 "task_scheduler/sequence_sort_key.h", |
| 850 "task_scheduler/single_thread_task_runner_thread_mode.h", |
| 850 "task_scheduler/task.cc", | 851 "task_scheduler/task.cc", |
| 851 "task_scheduler/task.h", | 852 "task_scheduler/task.h", |
| 852 "task_scheduler/task_scheduler.cc", | 853 "task_scheduler/task_scheduler.cc", |
| 853 "task_scheduler/task_scheduler.h", | 854 "task_scheduler/task_scheduler.h", |
| 854 "task_scheduler/task_scheduler_impl.cc", | 855 "task_scheduler/task_scheduler_impl.cc", |
| 855 "task_scheduler/task_scheduler_impl.h", | 856 "task_scheduler/task_scheduler_impl.h", |
| 856 "task_scheduler/task_tracker.cc", | 857 "task_scheduler/task_tracker.cc", |
| 857 "task_scheduler/task_tracker.h", | 858 "task_scheduler/task_tracker.h", |
| 858 "task_scheduler/task_tracker_posix.cc", | 859 "task_scheduler/task_tracker_posix.cc", |
| 859 "task_scheduler/task_tracker_posix.h", | 860 "task_scheduler/task_tracker_posix.h", |
| (...skipping 1862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2722 } | 2723 } |
| 2723 | 2724 |
| 2724 fuzzer_test("base_json_correctness_fuzzer") { | 2725 fuzzer_test("base_json_correctness_fuzzer") { |
| 2725 sources = [ | 2726 sources = [ |
| 2726 "json/correctness_fuzzer.cc", | 2727 "json/correctness_fuzzer.cc", |
| 2727 ] | 2728 ] |
| 2728 deps = [ | 2729 deps = [ |
| 2729 ":base", | 2730 ":base", |
| 2730 ] | 2731 ] |
| 2731 } | 2732 } |
| OLD | NEW |