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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
890 "src/asmjs/asm-wasm-builder.cc", | 890 "src/asmjs/asm-wasm-builder.cc", |
891 "src/asmjs/asm-wasm-builder.h", | 891 "src/asmjs/asm-wasm-builder.h", |
892 "src/asmjs/switch-logic.cc", | 892 "src/asmjs/switch-logic.cc", |
893 "src/asmjs/switch-logic.h", | 893 "src/asmjs/switch-logic.h", |
894 "src/assembler.cc", | 894 "src/assembler.cc", |
895 "src/assembler.h", | 895 "src/assembler.h", |
896 "src/assert-scope.cc", | 896 "src/assert-scope.cc", |
897 "src/assert-scope.h", | 897 "src/assert-scope.h", |
898 "src/ast/ast-expression-rewriter.cc", | 898 "src/ast/ast-expression-rewriter.cc", |
899 "src/ast/ast-expression-rewriter.h", | 899 "src/ast/ast-expression-rewriter.h", |
| 900 "src/ast/ast-function-literal-id-reindexer.cc", |
| 901 "src/ast/ast-function-literal-id-reindexer.h", |
900 "src/ast/ast-literal-reindexer.cc", | 902 "src/ast/ast-literal-reindexer.cc", |
901 "src/ast/ast-literal-reindexer.h", | 903 "src/ast/ast-literal-reindexer.h", |
902 "src/ast/ast-numbering.cc", | 904 "src/ast/ast-numbering.cc", |
903 "src/ast/ast-numbering.h", | 905 "src/ast/ast-numbering.h", |
904 "src/ast/ast-traversal-visitor.h", | 906 "src/ast/ast-traversal-visitor.h", |
905 "src/ast/ast-type-bounds.h", | 907 "src/ast/ast-type-bounds.h", |
906 "src/ast/ast-types.cc", | 908 "src/ast/ast-types.cc", |
907 "src/ast/ast-types.h", | 909 "src/ast/ast-types.h", |
908 "src/ast/ast-value-factory.cc", | 910 "src/ast/ast-value-factory.cc", |
909 "src/ast/ast-value-factory.h", | 911 "src/ast/ast-value-factory.h", |
(...skipping 2073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2983 ] | 2985 ] |
2984 | 2986 |
2985 configs = [ | 2987 configs = [ |
2986 ":external_config", | 2988 ":external_config", |
2987 ":internal_config_base", | 2989 ":internal_config_base", |
2988 ] | 2990 ] |
2989 } | 2991 } |
2990 | 2992 |
2991 v8_fuzzer("wasm_data_section_fuzzer") { | 2993 v8_fuzzer("wasm_data_section_fuzzer") { |
2992 } | 2994 } |
OLD | NEW |