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 1979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1990 "task_scheduler/task_tracker_posix_unittest.cc", | 1990 "task_scheduler/task_tracker_posix_unittest.cc", |
1991 "task_scheduler/task_tracker_unittest.cc", | 1991 "task_scheduler/task_tracker_unittest.cc", |
1992 "task_scheduler/task_traits_unittest.cc", | 1992 "task_scheduler/task_traits_unittest.cc", |
1993 "task_scheduler/task_unittest.cc", | 1993 "task_scheduler/task_unittest.cc", |
1994 "task_scheduler/test_task_factory.cc", | 1994 "task_scheduler/test_task_factory.cc", |
1995 "task_scheduler/test_task_factory.h", | 1995 "task_scheduler/test_task_factory.h", |
1996 "task_scheduler/test_utils.h", | 1996 "task_scheduler/test_utils.h", |
1997 "template_util_unittest.cc", | 1997 "template_util_unittest.cc", |
1998 "test/histogram_tester_unittest.cc", | 1998 "test/histogram_tester_unittest.cc", |
1999 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", | 1999 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", |
| 2000 "test/scoped_task_scheduler_unittest.cc", |
2000 "test/test_pending_task_unittest.cc", | 2001 "test/test_pending_task_unittest.cc", |
2001 "test/test_reg_util_win_unittest.cc", | 2002 "test/test_reg_util_win_unittest.cc", |
2002 "test/trace_event_analyzer_unittest.cc", | 2003 "test/trace_event_analyzer_unittest.cc", |
2003 "test/user_action_tester_unittest.cc", | 2004 "test/user_action_tester_unittest.cc", |
2004 "threading/non_thread_safe_unittest.cc", | 2005 "threading/non_thread_safe_unittest.cc", |
2005 "threading/platform_thread_unittest.cc", | 2006 "threading/platform_thread_unittest.cc", |
2006 "threading/post_task_and_reply_impl_unittest.cc", | 2007 "threading/post_task_and_reply_impl_unittest.cc", |
2007 "threading/sequenced_task_runner_handle_unittest.cc", | 2008 "threading/sequenced_task_runner_handle_unittest.cc", |
2008 "threading/sequenced_worker_pool_unittest.cc", | 2009 "threading/sequenced_worker_pool_unittest.cc", |
2009 "threading/simple_thread_unittest.cc", | 2010 "threading/simple_thread_unittest.cc", |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2527 } | 2528 } |
2528 | 2529 |
2529 fuzzer_test("base_json_correctness_fuzzer") { | 2530 fuzzer_test("base_json_correctness_fuzzer") { |
2530 sources = [ | 2531 sources = [ |
2531 "json/correctness_fuzzer.cc", | 2532 "json/correctness_fuzzer.cc", |
2532 ] | 2533 ] |
2533 deps = [ | 2534 deps = [ |
2534 ":base", | 2535 ":base", |
2535 ] | 2536 ] |
2536 } | 2537 } |
OLD | NEW |