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