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 2189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2200 "task_scheduler/task_tracker_unittest.cc", | 2200 "task_scheduler/task_tracker_unittest.cc", |
2201 "task_scheduler/task_traits_unittest.cc", | 2201 "task_scheduler/task_traits_unittest.cc", |
2202 "task_scheduler/task_unittest.cc", | 2202 "task_scheduler/task_unittest.cc", |
2203 "task_scheduler/test_task_factory.cc", | 2203 "task_scheduler/test_task_factory.cc", |
2204 "task_scheduler/test_task_factory.h", | 2204 "task_scheduler/test_task_factory.h", |
2205 "task_scheduler/test_utils.cc", | 2205 "task_scheduler/test_utils.cc", |
2206 "task_scheduler/test_utils.h", | 2206 "task_scheduler/test_utils.h", |
2207 "template_util_unittest.cc", | 2207 "template_util_unittest.cc", |
2208 "test/histogram_tester_unittest.cc", | 2208 "test/histogram_tester_unittest.cc", |
2209 "test/mock_callback_unittest.cc", | 2209 "test/mock_callback_unittest.cc", |
| 2210 "test/scoped_feature_list_unittest.cc", |
2210 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", | 2211 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", |
2211 "test/scoped_task_environment_unittest.cc", | 2212 "test/scoped_task_environment_unittest.cc", |
2212 "test/scoped_task_scheduler_unittest.cc", | 2213 "test/scoped_task_scheduler_unittest.cc", |
2213 "test/test_pending_task_unittest.cc", | 2214 "test/test_pending_task_unittest.cc", |
2214 "test/test_reg_util_win_unittest.cc", | 2215 "test/test_reg_util_win_unittest.cc", |
2215 "test/trace_event_analyzer_unittest.cc", | 2216 "test/trace_event_analyzer_unittest.cc", |
2216 "test/user_action_tester_unittest.cc", | 2217 "test/user_action_tester_unittest.cc", |
2217 "threading/platform_thread_unittest.cc", | 2218 "threading/platform_thread_unittest.cc", |
2218 "threading/post_task_and_reply_impl_unittest.cc", | 2219 "threading/post_task_and_reply_impl_unittest.cc", |
2219 "threading/sequence_local_storage_map_unittest.cc", | 2220 "threading/sequence_local_storage_map_unittest.cc", |
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2801 } | 2802 } |
2802 | 2803 |
2803 fuzzer_test("base_json_correctness_fuzzer") { | 2804 fuzzer_test("base_json_correctness_fuzzer") { |
2804 sources = [ | 2805 sources = [ |
2805 "json/correctness_fuzzer.cc", | 2806 "json/correctness_fuzzer.cc", |
2806 ] | 2807 ] |
2807 deps = [ | 2808 deps = [ |
2808 ":base", | 2809 ":base", |
2809 ] | 2810 ] |
2810 } | 2811 } |
OLD | NEW |