| 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 1969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1980 "bind_unittest.cc", | 1980 "bind_unittest.cc", |
| 1981 "bit_cast_unittest.cc", | 1981 "bit_cast_unittest.cc", |
| 1982 "bits_unittest.cc", | 1982 "bits_unittest.cc", |
| 1983 "build_time_unittest.cc", | 1983 "build_time_unittest.cc", |
| 1984 "callback_helpers_unittest.cc", | 1984 "callback_helpers_unittest.cc", |
| 1985 "callback_list_unittest.cc", | 1985 "callback_list_unittest.cc", |
| 1986 "callback_unittest.cc", | 1986 "callback_unittest.cc", |
| 1987 "cancelable_callback_unittest.cc", | 1987 "cancelable_callback_unittest.cc", |
| 1988 "command_line_unittest.cc", | 1988 "command_line_unittest.cc", |
| 1989 "containers/adapters_unittest.cc", | 1989 "containers/adapters_unittest.cc", |
| 1990 "containers/container_test_utils.h", | |
| 1991 "containers/flat_map_unittest.cc", | 1990 "containers/flat_map_unittest.cc", |
| 1992 "containers/flat_set_unittest.cc", | 1991 "containers/flat_set_unittest.cc", |
| 1993 "containers/flat_tree_unittest.cc", | 1992 "containers/flat_tree_unittest.cc", |
| 1994 "containers/hash_tables_unittest.cc", | 1993 "containers/hash_tables_unittest.cc", |
| 1995 "containers/linked_list_unittest.cc", | 1994 "containers/linked_list_unittest.cc", |
| 1996 "containers/mru_cache_unittest.cc", | 1995 "containers/mru_cache_unittest.cc", |
| 1997 "containers/small_map_unittest.cc", | 1996 "containers/small_map_unittest.cc", |
| 1998 "containers/stack_container_unittest.cc", | 1997 "containers/stack_container_unittest.cc", |
| 1999 "cpu_unittest.cc", | 1998 "cpu_unittest.cc", |
| 2000 "debug/activity_analyzer_unittest.cc", | 1999 "debug/activity_analyzer_unittest.cc", |
| (...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2795 } | 2794 } |
| 2796 | 2795 |
| 2797 fuzzer_test("base_json_correctness_fuzzer") { | 2796 fuzzer_test("base_json_correctness_fuzzer") { |
| 2798 sources = [ | 2797 sources = [ |
| 2799 "json/correctness_fuzzer.cc", | 2798 "json/correctness_fuzzer.cc", |
| 2800 ] | 2799 ] |
| 2801 deps = [ | 2800 deps = [ |
| 2802 ":base", | 2801 ":base", |
| 2803 ] | 2802 ] |
| 2804 } | 2803 } |
| OLD | NEW |