| 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 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 "src/asmjs/asm-wasm-builder.cc", | 892 "src/asmjs/asm-wasm-builder.cc", |
| 893 "src/asmjs/asm-wasm-builder.h", | 893 "src/asmjs/asm-wasm-builder.h", |
| 894 "src/asmjs/switch-logic.cc", | 894 "src/asmjs/switch-logic.cc", |
| 895 "src/asmjs/switch-logic.h", | 895 "src/asmjs/switch-logic.h", |
| 896 "src/assembler.cc", | 896 "src/assembler.cc", |
| 897 "src/assembler.h", | 897 "src/assembler.h", |
| 898 "src/assert-scope.cc", | 898 "src/assert-scope.cc", |
| 899 "src/assert-scope.h", | 899 "src/assert-scope.h", |
| 900 "src/ast/ast-expression-rewriter.cc", | 900 "src/ast/ast-expression-rewriter.cc", |
| 901 "src/ast/ast-expression-rewriter.h", | 901 "src/ast/ast-expression-rewriter.h", |
| 902 "src/ast/ast-function-literal-id-reindexer.cc", |
| 903 "src/ast/ast-function-literal-id-reindexer.h", |
| 902 "src/ast/ast-literal-reindexer.cc", | 904 "src/ast/ast-literal-reindexer.cc", |
| 903 "src/ast/ast-literal-reindexer.h", | 905 "src/ast/ast-literal-reindexer.h", |
| 904 "src/ast/ast-numbering.cc", | 906 "src/ast/ast-numbering.cc", |
| 905 "src/ast/ast-numbering.h", | 907 "src/ast/ast-numbering.h", |
| 906 "src/ast/ast-traversal-visitor.h", | 908 "src/ast/ast-traversal-visitor.h", |
| 907 "src/ast/ast-type-bounds.h", | 909 "src/ast/ast-type-bounds.h", |
| 908 "src/ast/ast-types.cc", | 910 "src/ast/ast-types.cc", |
| 909 "src/ast/ast-types.h", | 911 "src/ast/ast-types.h", |
| 910 "src/ast/ast-value-factory.cc", | 912 "src/ast/ast-value-factory.cc", |
| 911 "src/ast/ast-value-factory.h", | 913 "src/ast/ast-value-factory.h", |
| (...skipping 2089 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3001 ] | 3003 ] |
| 3002 | 3004 |
| 3003 configs = [ | 3005 configs = [ |
| 3004 ":external_config", | 3006 ":external_config", |
| 3005 ":internal_config_base", | 3007 ":internal_config_base", |
| 3006 ] | 3008 ] |
| 3007 } | 3009 } |
| 3008 | 3010 |
| 3009 v8_fuzzer("wasm_data_section_fuzzer") { | 3011 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3010 } | 3012 } |
| OLD | NEW |