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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 "callback.h", | 252 "callback.h", |
253 "callback_helpers.cc", | 253 "callback_helpers.cc", |
254 "callback_helpers.h", | 254 "callback_helpers.h", |
255 "callback_internal.cc", | 255 "callback_internal.cc", |
256 "callback_internal.h", | 256 "callback_internal.h", |
257 "cancelable_callback.h", | 257 "cancelable_callback.h", |
258 "command_line.cc", | 258 "command_line.cc", |
259 "command_line.h", | 259 "command_line.h", |
260 "compiler_specific.h", | 260 "compiler_specific.h", |
261 "containers/adapters.h", | 261 "containers/adapters.h", |
| 262 "containers/flat_set.h", |
262 "containers/hash_tables.h", | 263 "containers/hash_tables.h", |
263 "containers/linked_list.h", | 264 "containers/linked_list.h", |
264 "containers/mru_cache.h", | 265 "containers/mru_cache.h", |
265 "containers/scoped_ptr_hash_map.h", | 266 "containers/scoped_ptr_hash_map.h", |
266 "containers/small_map.h", | 267 "containers/small_map.h", |
267 "containers/stack_container.h", | 268 "containers/stack_container.h", |
268 "cpu.cc", | 269 "cpu.cc", |
269 "cpu.h", | 270 "cpu.h", |
270 "critical_closure.h", | 271 "critical_closure.h", |
271 "critical_closure_internal_ios.mm", | 272 "critical_closure_internal_ios.mm", |
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1805 "bind_unittest.cc", | 1806 "bind_unittest.cc", |
1806 "bit_cast_unittest.cc", | 1807 "bit_cast_unittest.cc", |
1807 "bits_unittest.cc", | 1808 "bits_unittest.cc", |
1808 "build_time_unittest.cc", | 1809 "build_time_unittest.cc", |
1809 "callback_helpers_unittest.cc", | 1810 "callback_helpers_unittest.cc", |
1810 "callback_list_unittest.cc", | 1811 "callback_list_unittest.cc", |
1811 "callback_unittest.cc", | 1812 "callback_unittest.cc", |
1812 "cancelable_callback_unittest.cc", | 1813 "cancelable_callback_unittest.cc", |
1813 "command_line_unittest.cc", | 1814 "command_line_unittest.cc", |
1814 "containers/adapters_unittest.cc", | 1815 "containers/adapters_unittest.cc", |
| 1816 "containers/flat_set_libcpp_unittest.cc", |
| 1817 "containers/flat_set_unittest.cc", |
1815 "containers/hash_tables_unittest.cc", | 1818 "containers/hash_tables_unittest.cc", |
1816 "containers/linked_list_unittest.cc", | 1819 "containers/linked_list_unittest.cc", |
1817 "containers/mru_cache_unittest.cc", | 1820 "containers/mru_cache_unittest.cc", |
1818 "containers/scoped_ptr_hash_map_unittest.cc", | 1821 "containers/scoped_ptr_hash_map_unittest.cc", |
1819 "containers/small_map_unittest.cc", | 1822 "containers/small_map_unittest.cc", |
1820 "containers/stack_container_unittest.cc", | 1823 "containers/stack_container_unittest.cc", |
1821 "cpu_unittest.cc", | 1824 "cpu_unittest.cc", |
1822 "debug/activity_analyzer_unittest.cc", | 1825 "debug/activity_analyzer_unittest.cc", |
1823 "debug/activity_tracker_unittest.cc", | 1826 "debug/activity_tracker_unittest.cc", |
1824 "debug/crash_logging_unittest.cc", | 1827 "debug/crash_logging_unittest.cc", |
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2525 } | 2528 } |
2526 | 2529 |
2527 fuzzer_test("base_json_correctness_fuzzer") { | 2530 fuzzer_test("base_json_correctness_fuzzer") { |
2528 sources = [ | 2531 sources = [ |
2529 "json/correctness_fuzzer.cc", | 2532 "json/correctness_fuzzer.cc", |
2530 ] | 2533 ] |
2531 deps = [ | 2534 deps = [ |
2532 ":base", | 2535 ":base", |
2533 ] | 2536 ] |
2534 } | 2537 } |
OLD | NEW |