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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 "callback_forward.h", | 257 "callback_forward.h", |
258 "callback_helpers.cc", | 258 "callback_helpers.cc", |
259 "callback_helpers.h", | 259 "callback_helpers.h", |
260 "callback_internal.cc", | 260 "callback_internal.cc", |
261 "callback_internal.h", | 261 "callback_internal.h", |
262 "cancelable_callback.h", | 262 "cancelable_callback.h", |
263 "command_line.cc", | 263 "command_line.cc", |
264 "command_line.h", | 264 "command_line.h", |
265 "compiler_specific.h", | 265 "compiler_specific.h", |
266 "containers/adapters.h", | 266 "containers/adapters.h", |
| 267 "containers/flat_set.h", |
267 "containers/hash_tables.h", | 268 "containers/hash_tables.h", |
268 "containers/linked_list.h", | 269 "containers/linked_list.h", |
269 "containers/mru_cache.h", | 270 "containers/mru_cache.h", |
270 "containers/scoped_ptr_hash_map.h", | 271 "containers/scoped_ptr_hash_map.h", |
271 "containers/small_map.h", | 272 "containers/small_map.h", |
272 "containers/stack_container.h", | 273 "containers/stack_container.h", |
273 "cpu.cc", | 274 "cpu.cc", |
274 "cpu.h", | 275 "cpu.h", |
275 "critical_closure.h", | 276 "critical_closure.h", |
276 "critical_closure_internal_ios.mm", | 277 "critical_closure_internal_ios.mm", |
(...skipping 1556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1833 "bind_unittest.cc", | 1834 "bind_unittest.cc", |
1834 "bit_cast_unittest.cc", | 1835 "bit_cast_unittest.cc", |
1835 "bits_unittest.cc", | 1836 "bits_unittest.cc", |
1836 "build_time_unittest.cc", | 1837 "build_time_unittest.cc", |
1837 "callback_helpers_unittest.cc", | 1838 "callback_helpers_unittest.cc", |
1838 "callback_list_unittest.cc", | 1839 "callback_list_unittest.cc", |
1839 "callback_unittest.cc", | 1840 "callback_unittest.cc", |
1840 "cancelable_callback_unittest.cc", | 1841 "cancelable_callback_unittest.cc", |
1841 "command_line_unittest.cc", | 1842 "command_line_unittest.cc", |
1842 "containers/adapters_unittest.cc", | 1843 "containers/adapters_unittest.cc", |
| 1844 "containers/flat_set_unittest.cc", |
1843 "containers/hash_tables_unittest.cc", | 1845 "containers/hash_tables_unittest.cc", |
1844 "containers/linked_list_unittest.cc", | 1846 "containers/linked_list_unittest.cc", |
1845 "containers/mru_cache_unittest.cc", | 1847 "containers/mru_cache_unittest.cc", |
1846 "containers/scoped_ptr_hash_map_unittest.cc", | 1848 "containers/scoped_ptr_hash_map_unittest.cc", |
1847 "containers/small_map_unittest.cc", | 1849 "containers/small_map_unittest.cc", |
1848 "containers/stack_container_unittest.cc", | 1850 "containers/stack_container_unittest.cc", |
1849 "cpu_unittest.cc", | 1851 "cpu_unittest.cc", |
1850 "debug/activity_analyzer_unittest.cc", | 1852 "debug/activity_analyzer_unittest.cc", |
1851 "debug/activity_tracker_unittest.cc", | 1853 "debug/activity_tracker_unittest.cc", |
1852 "debug/crash_logging_unittest.cc", | 1854 "debug/crash_logging_unittest.cc", |
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2564 } | 2566 } |
2565 | 2567 |
2566 fuzzer_test("base_json_correctness_fuzzer") { | 2568 fuzzer_test("base_json_correctness_fuzzer") { |
2567 sources = [ | 2569 sources = [ |
2568 "json/correctness_fuzzer.cc", | 2570 "json/correctness_fuzzer.cc", |
2569 ] | 2571 ] |
2570 deps = [ | 2572 deps = [ |
2571 ":base", | 2573 ":base", |
2572 ] | 2574 ] |
2573 } | 2575 } |
OLD | NEW |