OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
10 | 10 |
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
885 "src/ast/ast-numbering.cc", | 885 "src/ast/ast-numbering.cc", |
886 "src/ast/ast-numbering.h", | 886 "src/ast/ast-numbering.h", |
887 "src/ast/ast-traversal-visitor.h", | 887 "src/ast/ast-traversal-visitor.h", |
888 "src/ast/ast-type-bounds.h", | 888 "src/ast/ast-type-bounds.h", |
889 "src/ast/ast-types.cc", | 889 "src/ast/ast-types.cc", |
890 "src/ast/ast-types.h", | 890 "src/ast/ast-types.h", |
891 "src/ast/ast-value-factory.cc", | 891 "src/ast/ast-value-factory.cc", |
892 "src/ast/ast-value-factory.h", | 892 "src/ast/ast-value-factory.h", |
893 "src/ast/ast.cc", | 893 "src/ast/ast.cc", |
894 "src/ast/ast.h", | 894 "src/ast/ast.h", |
| 895 "src/ast/collect-eager-literals.cc", |
| 896 "src/ast/collect-eager-literals.h", |
895 "src/ast/compile-time-value.cc", | 897 "src/ast/compile-time-value.cc", |
896 "src/ast/compile-time-value.h", | 898 "src/ast/compile-time-value.h", |
897 "src/ast/context-slot-cache.cc", | 899 "src/ast/context-slot-cache.cc", |
898 "src/ast/context-slot-cache.h", | 900 "src/ast/context-slot-cache.h", |
899 "src/ast/modules.cc", | 901 "src/ast/modules.cc", |
900 "src/ast/modules.h", | 902 "src/ast/modules.h", |
901 "src/ast/prettyprinter.cc", | 903 "src/ast/prettyprinter.cc", |
902 "src/ast/prettyprinter.h", | 904 "src/ast/prettyprinter.h", |
903 "src/ast/scopeinfo.cc", | 905 "src/ast/scopeinfo.cc", |
904 "src/ast/scopes.cc", | 906 "src/ast/scopes.cc", |
(...skipping 2073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2978 ] | 2980 ] |
2979 | 2981 |
2980 configs = [ | 2982 configs = [ |
2981 ":external_config", | 2983 ":external_config", |
2982 ":internal_config_base", | 2984 ":internal_config_base", |
2983 ] | 2985 ] |
2984 } | 2986 } |
2985 | 2987 |
2986 v8_fuzzer("wasm_data_section_fuzzer") { | 2988 v8_fuzzer("wasm_data_section_fuzzer") { |
2987 } | 2989 } |
OLD | NEW |