| 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 2106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2117 "threading/platform_thread_unittest.cc", | 2117 "threading/platform_thread_unittest.cc", |
| 2118 "threading/post_task_and_reply_impl_unittest.cc", | 2118 "threading/post_task_and_reply_impl_unittest.cc", |
| 2119 "threading/sequenced_task_runner_handle_unittest.cc", | 2119 "threading/sequenced_task_runner_handle_unittest.cc", |
| 2120 "threading/sequenced_worker_pool_unittest.cc", | 2120 "threading/sequenced_worker_pool_unittest.cc", |
| 2121 "threading/simple_thread_unittest.cc", | 2121 "threading/simple_thread_unittest.cc", |
| 2122 "threading/thread_checker_unittest.cc", | 2122 "threading/thread_checker_unittest.cc", |
| 2123 "threading/thread_collision_warner_unittest.cc", | 2123 "threading/thread_collision_warner_unittest.cc", |
| 2124 "threading/thread_id_name_manager_unittest.cc", | 2124 "threading/thread_id_name_manager_unittest.cc", |
| 2125 "threading/thread_local_storage_unittest.cc", | 2125 "threading/thread_local_storage_unittest.cc", |
| 2126 "threading/thread_local_unittest.cc", | 2126 "threading/thread_local_unittest.cc", |
| 2127 "threading/thread_task_runner_handle_unittest.cc", |
| 2127 "threading/thread_unittest.cc", | 2128 "threading/thread_unittest.cc", |
| 2128 "threading/watchdog_unittest.cc", | 2129 "threading/watchdog_unittest.cc", |
| 2129 "threading/worker_pool_posix_unittest.cc", | 2130 "threading/worker_pool_posix_unittest.cc", |
| 2130 "threading/worker_pool_unittest.cc", | 2131 "threading/worker_pool_unittest.cc", |
| 2131 "time/pr_time_unittest.cc", | 2132 "time/pr_time_unittest.cc", |
| 2132 "time/time_unittest.cc", | 2133 "time/time_unittest.cc", |
| 2133 "time/time_win_unittest.cc", | 2134 "time/time_win_unittest.cc", |
| 2134 "timer/hi_res_timer_manager_unittest.cc", | 2135 "timer/hi_res_timer_manager_unittest.cc", |
| 2135 "timer/mock_timer_unittest.cc", | 2136 "timer/mock_timer_unittest.cc", |
| 2136 "timer/timer_unittest.cc", | 2137 "timer/timer_unittest.cc", |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2656 } | 2657 } |
| 2657 | 2658 |
| 2658 fuzzer_test("base_json_correctness_fuzzer") { | 2659 fuzzer_test("base_json_correctness_fuzzer") { |
| 2659 sources = [ | 2660 sources = [ |
| 2660 "json/correctness_fuzzer.cc", | 2661 "json/correctness_fuzzer.cc", |
| 2661 ] | 2662 ] |
| 2662 deps = [ | 2663 deps = [ |
| 2663 ":base", | 2664 ":base", |
| 2664 ] | 2665 ] |
| 2665 } | 2666 } |
| OLD | NEW |