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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
830 "src/asmjs/asm-types.cc", | 830 "src/asmjs/asm-types.cc", |
831 "src/asmjs/asm-types.h", | 831 "src/asmjs/asm-types.h", |
832 "src/asmjs/asm-wasm-builder.cc", | 832 "src/asmjs/asm-wasm-builder.cc", |
833 "src/asmjs/asm-wasm-builder.h", | 833 "src/asmjs/asm-wasm-builder.h", |
834 "src/assembler.cc", | 834 "src/assembler.cc", |
835 "src/assembler.h", | 835 "src/assembler.h", |
836 "src/assert-scope.cc", | 836 "src/assert-scope.cc", |
837 "src/assert-scope.h", | 837 "src/assert-scope.h", |
838 "src/ast/ast-expression-rewriter.cc", | 838 "src/ast/ast-expression-rewriter.cc", |
839 "src/ast/ast-expression-rewriter.h", | 839 "src/ast/ast-expression-rewriter.h", |
840 "src/ast/ast-expression-visitor.cc", | |
841 "src/ast/ast-expression-visitor.h", | |
842 "src/ast/ast-literal-reindexer.cc", | 840 "src/ast/ast-literal-reindexer.cc", |
843 "src/ast/ast-literal-reindexer.h", | 841 "src/ast/ast-literal-reindexer.h", |
844 "src/ast/ast-numbering.cc", | 842 "src/ast/ast-numbering.cc", |
845 "src/ast/ast-numbering.h", | 843 "src/ast/ast-numbering.h", |
846 "src/ast/ast-type-bounds.h", | 844 "src/ast/ast-type-bounds.h", |
847 "src/ast/ast-value-factory.cc", | 845 "src/ast/ast-value-factory.cc", |
848 "src/ast/ast-value-factory.h", | 846 "src/ast/ast-value-factory.h", |
849 "src/ast/ast.cc", | 847 "src/ast/ast.cc", |
850 "src/ast/ast.h", | 848 "src/ast/ast.h", |
851 "src/ast/modules.cc", | 849 "src/ast/modules.cc", |
(...skipping 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2484 | 2482 |
2485 deps = [ | 2483 deps = [ |
2486 ":fuzzer_support", | 2484 ":fuzzer_support", |
2487 ] | 2485 ] |
2488 | 2486 |
2489 configs = [ ":internal_config" ] | 2487 configs = [ ":internal_config" ] |
2490 } | 2488 } |
2491 | 2489 |
2492 v8_fuzzer("wasm_asmjs_fuzzer") { | 2490 v8_fuzzer("wasm_asmjs_fuzzer") { |
2493 } | 2491 } |
OLD | NEW |