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 1991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2002 "task_scheduler/task_tracker_posix_unittest.cc", | 2002 "task_scheduler/task_tracker_posix_unittest.cc", |
2003 "task_scheduler/task_tracker_unittest.cc", | 2003 "task_scheduler/task_tracker_unittest.cc", |
2004 "task_scheduler/task_traits_unittest.cc", | 2004 "task_scheduler/task_traits_unittest.cc", |
2005 "task_scheduler/task_unittest.cc", | 2005 "task_scheduler/task_unittest.cc", |
2006 "task_scheduler/test_task_factory.cc", | 2006 "task_scheduler/test_task_factory.cc", |
2007 "task_scheduler/test_task_factory.h", | 2007 "task_scheduler/test_task_factory.h", |
2008 "task_scheduler/test_utils.h", | 2008 "task_scheduler/test_utils.h", |
2009 "template_util_unittest.cc", | 2009 "template_util_unittest.cc", |
2010 "test/histogram_tester_unittest.cc", | 2010 "test/histogram_tester_unittest.cc", |
2011 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", | 2011 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", |
| 2012 "test/scoped_task_scheduler_unittest.cc", |
2012 "test/test_pending_task_unittest.cc", | 2013 "test/test_pending_task_unittest.cc", |
2013 "test/test_reg_util_win_unittest.cc", | 2014 "test/test_reg_util_win_unittest.cc", |
2014 "test/trace_event_analyzer_unittest.cc", | 2015 "test/trace_event_analyzer_unittest.cc", |
2015 "test/user_action_tester_unittest.cc", | 2016 "test/user_action_tester_unittest.cc", |
2016 "threading/non_thread_safe_unittest.cc", | 2017 "threading/non_thread_safe_unittest.cc", |
2017 "threading/platform_thread_unittest.cc", | 2018 "threading/platform_thread_unittest.cc", |
2018 "threading/post_task_and_reply_impl_unittest.cc", | 2019 "threading/post_task_and_reply_impl_unittest.cc", |
2019 "threading/sequenced_task_runner_handle_unittest.cc", | 2020 "threading/sequenced_task_runner_handle_unittest.cc", |
2020 "threading/sequenced_worker_pool_unittest.cc", | 2021 "threading/sequenced_worker_pool_unittest.cc", |
2021 "threading/simple_thread_unittest.cc", | 2022 "threading/simple_thread_unittest.cc", |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2542 } | 2543 } |
2543 | 2544 |
2544 fuzzer_test("base_json_correctness_fuzzer") { | 2545 fuzzer_test("base_json_correctness_fuzzer") { |
2545 sources = [ | 2546 sources = [ |
2546 "json/correctness_fuzzer.cc", | 2547 "json/correctness_fuzzer.cc", |
2547 ] | 2548 ] |
2548 deps = [ | 2549 deps = [ |
2549 ":base", | 2550 ":base", |
2550 ] | 2551 ] |
2551 } | 2552 } |
OLD | NEW |