| 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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 "src/asmjs/asm-types.cc", | 831 "src/asmjs/asm-types.cc", |
| 832 "src/asmjs/asm-types.h", | 832 "src/asmjs/asm-types.h", |
| 833 "src/asmjs/asm-wasm-builder.cc", | 833 "src/asmjs/asm-wasm-builder.cc", |
| 834 "src/asmjs/asm-wasm-builder.h", | 834 "src/asmjs/asm-wasm-builder.h", |
| 835 "src/assembler.cc", | 835 "src/assembler.cc", |
| 836 "src/assembler.h", | 836 "src/assembler.h", |
| 837 "src/assert-scope.cc", | 837 "src/assert-scope.cc", |
| 838 "src/assert-scope.h", | 838 "src/assert-scope.h", |
| 839 "src/ast/ast-expression-rewriter.cc", | 839 "src/ast/ast-expression-rewriter.cc", |
| 840 "src/ast/ast-expression-rewriter.h", | 840 "src/ast/ast-expression-rewriter.h", |
| 841 "src/ast/ast-expression-visitor.cc", | |
| 842 "src/ast/ast-expression-visitor.h", | |
| 843 "src/ast/ast-literal-reindexer.cc", | 841 "src/ast/ast-literal-reindexer.cc", |
| 844 "src/ast/ast-literal-reindexer.h", | 842 "src/ast/ast-literal-reindexer.h", |
| 845 "src/ast/ast-numbering.cc", | 843 "src/ast/ast-numbering.cc", |
| 846 "src/ast/ast-numbering.h", | 844 "src/ast/ast-numbering.h", |
| 845 "src/ast/ast-traversal-visitor.h", |
| 847 "src/ast/ast-type-bounds.h", | 846 "src/ast/ast-type-bounds.h", |
| 848 "src/ast/ast-value-factory.cc", | 847 "src/ast/ast-value-factory.cc", |
| 849 "src/ast/ast-value-factory.h", | 848 "src/ast/ast-value-factory.h", |
| 850 "src/ast/ast.cc", | 849 "src/ast/ast.cc", |
| 851 "src/ast/ast.h", | 850 "src/ast/ast.h", |
| 852 "src/ast/modules.cc", | 851 "src/ast/modules.cc", |
| 853 "src/ast/modules.h", | 852 "src/ast/modules.h", |
| 854 "src/ast/prettyprinter.cc", | 853 "src/ast/prettyprinter.cc", |
| 855 "src/ast/prettyprinter.h", | 854 "src/ast/prettyprinter.h", |
| 856 "src/ast/scopeinfo.cc", | 855 "src/ast/scopeinfo.cc", |
| (...skipping 1649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2506 | 2505 |
| 2507 deps = [ | 2506 deps = [ |
| 2508 ":fuzzer_support", | 2507 ":fuzzer_support", |
| 2509 ] | 2508 ] |
| 2510 | 2509 |
| 2511 configs = [ ":internal_config" ] | 2510 configs = [ ":internal_config" ] |
| 2512 } | 2511 } |
| 2513 | 2512 |
| 2514 v8_fuzzer("wasm_asmjs_fuzzer") { | 2513 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2515 } | 2514 } |
| OLD | NEW |