| 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 2126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2137 "task_scheduler/task_tracker_unittest.cc", | 2137 "task_scheduler/task_tracker_unittest.cc", |
| 2138 "task_scheduler/task_traits_unittest.cc", | 2138 "task_scheduler/task_traits_unittest.cc", |
| 2139 "task_scheduler/task_unittest.cc", | 2139 "task_scheduler/task_unittest.cc", |
| 2140 "task_scheduler/test_task_factory.cc", | 2140 "task_scheduler/test_task_factory.cc", |
| 2141 "task_scheduler/test_task_factory.h", | 2141 "task_scheduler/test_task_factory.h", |
| 2142 "task_scheduler/test_utils.h", | 2142 "task_scheduler/test_utils.h", |
| 2143 "template_util_unittest.cc", | 2143 "template_util_unittest.cc", |
| 2144 "test/histogram_tester_unittest.cc", | 2144 "test/histogram_tester_unittest.cc", |
| 2145 "test/mock_callback_unittest.cc", | 2145 "test/mock_callback_unittest.cc", |
| 2146 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", | 2146 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", |
| 2147 "test/scoped_task_environment_unittest.cc", |
| 2147 "test/scoped_task_scheduler_unittest.cc", | 2148 "test/scoped_task_scheduler_unittest.cc", |
| 2148 "test/test_pending_task_unittest.cc", | 2149 "test/test_pending_task_unittest.cc", |
| 2149 "test/test_reg_util_win_unittest.cc", | 2150 "test/test_reg_util_win_unittest.cc", |
| 2150 "test/trace_event_analyzer_unittest.cc", | 2151 "test/trace_event_analyzer_unittest.cc", |
| 2151 "test/user_action_tester_unittest.cc", | 2152 "test/user_action_tester_unittest.cc", |
| 2152 "threading/non_thread_safe_unittest.cc", | 2153 "threading/non_thread_safe_unittest.cc", |
| 2153 "threading/platform_thread_unittest.cc", | 2154 "threading/platform_thread_unittest.cc", |
| 2154 "threading/post_task_and_reply_impl_unittest.cc", | 2155 "threading/post_task_and_reply_impl_unittest.cc", |
| 2155 "threading/sequenced_task_runner_handle_unittest.cc", | 2156 "threading/sequenced_task_runner_handle_unittest.cc", |
| 2156 "threading/sequenced_worker_pool_unittest.cc", | 2157 "threading/sequenced_worker_pool_unittest.cc", |
| (...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2721 } | 2722 } |
| 2722 | 2723 |
| 2723 fuzzer_test("base_json_correctness_fuzzer") { | 2724 fuzzer_test("base_json_correctness_fuzzer") { |
| 2724 sources = [ | 2725 sources = [ |
| 2725 "json/correctness_fuzzer.cc", | 2726 "json/correctness_fuzzer.cc", |
| 2726 ] | 2727 ] |
| 2727 deps = [ | 2728 deps = [ |
| 2728 ":base", | 2729 ":base", |
| 2729 ] | 2730 ] |
| 2730 } | 2731 } |
| OLD | NEW |