| 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 2027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2038 "task_scheduler/task_traits_unittest.cc", | 2038 "task_scheduler/task_traits_unittest.cc", |
| 2039 "task_scheduler/task_unittest.cc", | 2039 "task_scheduler/task_unittest.cc", |
| 2040 "task_scheduler/test_task_factory.cc", | 2040 "task_scheduler/test_task_factory.cc", |
| 2041 "task_scheduler/test_task_factory.h", | 2041 "task_scheduler/test_task_factory.h", |
| 2042 "task_scheduler/test_utils.h", | 2042 "task_scheduler/test_utils.h", |
| 2043 "template_util_unittest.cc", | 2043 "template_util_unittest.cc", |
| 2044 "test/histogram_tester_unittest.cc", | 2044 "test/histogram_tester_unittest.cc", |
| 2045 "test/mock_callback_unittest.cc", | 2045 "test/mock_callback_unittest.cc", |
| 2046 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", | 2046 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", |
| 2047 "test/scoped_task_scheduler_unittest.cc", | 2047 "test/scoped_task_scheduler_unittest.cc", |
| 2048 "test/test_pending_task_unittest.cc", | 2048 "test/test_pending_task_info_unittest.cc", |
| 2049 "test/test_reg_util_win_unittest.cc", | 2049 "test/test_reg_util_win_unittest.cc", |
| 2050 "test/trace_event_analyzer_unittest.cc", | 2050 "test/trace_event_analyzer_unittest.cc", |
| 2051 "test/user_action_tester_unittest.cc", | 2051 "test/user_action_tester_unittest.cc", |
| 2052 "threading/non_thread_safe_unittest.cc", | 2052 "threading/non_thread_safe_unittest.cc", |
| 2053 "threading/platform_thread_unittest.cc", | 2053 "threading/platform_thread_unittest.cc", |
| 2054 "threading/post_task_and_reply_impl_unittest.cc", | 2054 "threading/post_task_and_reply_impl_unittest.cc", |
| 2055 "threading/sequenced_task_runner_handle_unittest.cc", | 2055 "threading/sequenced_task_runner_handle_unittest.cc", |
| 2056 "threading/sequenced_worker_pool_unittest.cc", | 2056 "threading/sequenced_worker_pool_unittest.cc", |
| 2057 "threading/simple_thread_unittest.cc", | 2057 "threading/simple_thread_unittest.cc", |
| 2058 "threading/thread_checker_unittest.cc", | 2058 "threading/thread_checker_unittest.cc", |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2588 } | 2588 } |
| 2589 | 2589 |
| 2590 fuzzer_test("base_json_correctness_fuzzer") { | 2590 fuzzer_test("base_json_correctness_fuzzer") { |
| 2591 sources = [ | 2591 sources = [ |
| 2592 "json/correctness_fuzzer.cc", | 2592 "json/correctness_fuzzer.cc", |
| 2593 ] | 2593 ] |
| 2594 deps = [ | 2594 deps = [ |
| 2595 ":base", | 2595 ":base", |
| 2596 ] | 2596 ] |
| 2597 } | 2597 } |
| OLD | NEW |