| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 "callback_forward.h", | 254 "callback_forward.h", |
| 255 "callback_helpers.cc", | 255 "callback_helpers.cc", |
| 256 "callback_helpers.h", | 256 "callback_helpers.h", |
| 257 "callback_internal.cc", | 257 "callback_internal.cc", |
| 258 "callback_internal.h", | 258 "callback_internal.h", |
| 259 "cancelable_callback.h", | 259 "cancelable_callback.h", |
| 260 "command_line.cc", | 260 "command_line.cc", |
| 261 "command_line.h", | 261 "command_line.h", |
| 262 "compiler_specific.h", | 262 "compiler_specific.h", |
| 263 "containers/adapters.h", | 263 "containers/adapters.h", |
| 264 "containers/flat_set.h", |
| 264 "containers/hash_tables.h", | 265 "containers/hash_tables.h", |
| 265 "containers/linked_list.h", | 266 "containers/linked_list.h", |
| 266 "containers/mru_cache.h", | 267 "containers/mru_cache.h", |
| 267 "containers/scoped_ptr_hash_map.h", | 268 "containers/scoped_ptr_hash_map.h", |
| 268 "containers/small_map.h", | 269 "containers/small_map.h", |
| 269 "containers/stack_container.h", | 270 "containers/stack_container.h", |
| 270 "cpu.cc", | 271 "cpu.cc", |
| 271 "cpu.h", | 272 "cpu.h", |
| 272 "critical_closure.h", | 273 "critical_closure.h", |
| 273 "critical_closure_internal_ios.mm", | 274 "critical_closure_internal_ios.mm", |
| (...skipping 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1817 "bind_unittest.cc", | 1818 "bind_unittest.cc", |
| 1818 "bit_cast_unittest.cc", | 1819 "bit_cast_unittest.cc", |
| 1819 "bits_unittest.cc", | 1820 "bits_unittest.cc", |
| 1820 "build_time_unittest.cc", | 1821 "build_time_unittest.cc", |
| 1821 "callback_helpers_unittest.cc", | 1822 "callback_helpers_unittest.cc", |
| 1822 "callback_list_unittest.cc", | 1823 "callback_list_unittest.cc", |
| 1823 "callback_unittest.cc", | 1824 "callback_unittest.cc", |
| 1824 "cancelable_callback_unittest.cc", | 1825 "cancelable_callback_unittest.cc", |
| 1825 "command_line_unittest.cc", | 1826 "command_line_unittest.cc", |
| 1826 "containers/adapters_unittest.cc", | 1827 "containers/adapters_unittest.cc", |
| 1828 "containers/flat_set_unittest.cc", |
| 1827 "containers/hash_tables_unittest.cc", | 1829 "containers/hash_tables_unittest.cc", |
| 1828 "containers/linked_list_unittest.cc", | 1830 "containers/linked_list_unittest.cc", |
| 1829 "containers/mru_cache_unittest.cc", | 1831 "containers/mru_cache_unittest.cc", |
| 1830 "containers/scoped_ptr_hash_map_unittest.cc", | 1832 "containers/scoped_ptr_hash_map_unittest.cc", |
| 1831 "containers/small_map_unittest.cc", | 1833 "containers/small_map_unittest.cc", |
| 1832 "containers/stack_container_unittest.cc", | 1834 "containers/stack_container_unittest.cc", |
| 1833 "cpu_unittest.cc", | 1835 "cpu_unittest.cc", |
| 1834 "debug/activity_analyzer_unittest.cc", | 1836 "debug/activity_analyzer_unittest.cc", |
| 1835 "debug/activity_tracker_unittest.cc", | 1837 "debug/activity_tracker_unittest.cc", |
| 1836 "debug/crash_logging_unittest.cc", | 1838 "debug/crash_logging_unittest.cc", |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2542 } | 2544 } |
| 2543 | 2545 |
| 2544 fuzzer_test("base_json_correctness_fuzzer") { | 2546 fuzzer_test("base_json_correctness_fuzzer") { |
| 2545 sources = [ | 2547 sources = [ |
| 2546 "json/correctness_fuzzer.cc", | 2548 "json/correctness_fuzzer.cc", |
| 2547 ] | 2549 ] |
| 2548 deps = [ | 2550 deps = [ |
| 2549 ":base", | 2551 ":base", |
| 2550 ] | 2552 ] |
| 2551 } | 2553 } |
| OLD | NEW |