| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 "callback_helpers.cc", | 268 "callback_helpers.cc", |
| 269 "callback_helpers.h", | 269 "callback_helpers.h", |
| 270 "callback_internal.cc", | 270 "callback_internal.cc", |
| 271 "callback_internal.h", | 271 "callback_internal.h", |
| 272 "callback_list.h", | 272 "callback_list.h", |
| 273 "cancelable_callback.h", | 273 "cancelable_callback.h", |
| 274 "command_line.cc", | 274 "command_line.cc", |
| 275 "command_line.h", | 275 "command_line.h", |
| 276 "compiler_specific.h", | 276 "compiler_specific.h", |
| 277 "containers/adapters.h", | 277 "containers/adapters.h", |
| 278 "containers/flat_map.h", |
| 278 "containers/flat_set.h", | 279 "containers/flat_set.h", |
| 280 "containers/flat_tree.h", |
| 279 "containers/hash_tables.h", | 281 "containers/hash_tables.h", |
| 280 "containers/linked_list.h", | 282 "containers/linked_list.h", |
| 281 "containers/mru_cache.h", | 283 "containers/mru_cache.h", |
| 282 "containers/small_map.h", | 284 "containers/small_map.h", |
| 283 "containers/stack_container.h", | 285 "containers/stack_container.h", |
| 284 "cpu.cc", | 286 "cpu.cc", |
| 285 "cpu.h", | 287 "cpu.h", |
| 286 "critical_closure.h", | 288 "critical_closure.h", |
| 287 "critical_closure_internal_ios.mm", | 289 "critical_closure_internal_ios.mm", |
| 288 | 290 |
| (...skipping 1617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1906 "bind_unittest.cc", | 1908 "bind_unittest.cc", |
| 1907 "bit_cast_unittest.cc", | 1909 "bit_cast_unittest.cc", |
| 1908 "bits_unittest.cc", | 1910 "bits_unittest.cc", |
| 1909 "build_time_unittest.cc", | 1911 "build_time_unittest.cc", |
| 1910 "callback_helpers_unittest.cc", | 1912 "callback_helpers_unittest.cc", |
| 1911 "callback_list_unittest.cc", | 1913 "callback_list_unittest.cc", |
| 1912 "callback_unittest.cc", | 1914 "callback_unittest.cc", |
| 1913 "cancelable_callback_unittest.cc", | 1915 "cancelable_callback_unittest.cc", |
| 1914 "command_line_unittest.cc", | 1916 "command_line_unittest.cc", |
| 1915 "containers/adapters_unittest.cc", | 1917 "containers/adapters_unittest.cc", |
| 1918 "containers/flat_map_unittest.cc", |
| 1916 "containers/flat_set_unittest.cc", | 1919 "containers/flat_set_unittest.cc", |
| 1920 "containers/flat_tree_unittest.cc", |
| 1917 "containers/hash_tables_unittest.cc", | 1921 "containers/hash_tables_unittest.cc", |
| 1918 "containers/linked_list_unittest.cc", | 1922 "containers/linked_list_unittest.cc", |
| 1919 "containers/mru_cache_unittest.cc", | 1923 "containers/mru_cache_unittest.cc", |
| 1920 "containers/small_map_unittest.cc", | 1924 "containers/small_map_unittest.cc", |
| 1921 "containers/stack_container_unittest.cc", | 1925 "containers/stack_container_unittest.cc", |
| 1922 "cpu_unittest.cc", | 1926 "cpu_unittest.cc", |
| 1923 "debug/activity_analyzer_unittest.cc", | 1927 "debug/activity_analyzer_unittest.cc", |
| 1924 "debug/activity_tracker_unittest.cc", | 1928 "debug/activity_tracker_unittest.cc", |
| 1925 "debug/crash_logging_unittest.cc", | 1929 "debug/crash_logging_unittest.cc", |
| 1926 "debug/debugger_unittest.cc", | 1930 "debug/debugger_unittest.cc", |
| (...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2652 } | 2656 } |
| 2653 | 2657 |
| 2654 fuzzer_test("base_json_correctness_fuzzer") { | 2658 fuzzer_test("base_json_correctness_fuzzer") { |
| 2655 sources = [ | 2659 sources = [ |
| 2656 "json/correctness_fuzzer.cc", | 2660 "json/correctness_fuzzer.cc", |
| 2657 ] | 2661 ] |
| 2658 deps = [ | 2662 deps = [ |
| 2659 ":base", | 2663 ":base", |
| 2660 ] | 2664 ] |
| 2661 } | 2665 } |
| OLD | NEW |