| 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 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 "src/arguments.cc", | 787 "src/arguments.cc", |
| 788 "src/arguments.h", | 788 "src/arguments.h", |
| 789 "src/asmjs/asm-js.cc", | 789 "src/asmjs/asm-js.cc", |
| 790 "src/asmjs/asm-js.h", | 790 "src/asmjs/asm-js.h", |
| 791 "src/asmjs/asm-typer.cc", | 791 "src/asmjs/asm-typer.cc", |
| 792 "src/asmjs/asm-typer.h", | 792 "src/asmjs/asm-typer.h", |
| 793 "src/asmjs/asm-types.cc", | 793 "src/asmjs/asm-types.cc", |
| 794 "src/asmjs/asm-types.h", | 794 "src/asmjs/asm-types.h", |
| 795 "src/asmjs/asm-wasm-builder.cc", | 795 "src/asmjs/asm-wasm-builder.cc", |
| 796 "src/asmjs/asm-wasm-builder.h", | 796 "src/asmjs/asm-wasm-builder.h", |
| 797 "src/asmjs/typing-asm.cc", | |
| 798 "src/asmjs/typing-asm.h", | |
| 799 "src/assembler.cc", | 797 "src/assembler.cc", |
| 800 "src/assembler.h", | 798 "src/assembler.h", |
| 801 "src/assert-scope.cc", | 799 "src/assert-scope.cc", |
| 802 "src/assert-scope.h", | 800 "src/assert-scope.h", |
| 803 "src/ast/ast-expression-rewriter.cc", | 801 "src/ast/ast-expression-rewriter.cc", |
| 804 "src/ast/ast-expression-rewriter.h", | 802 "src/ast/ast-expression-rewriter.h", |
| 805 "src/ast/ast-expression-visitor.cc", | 803 "src/ast/ast-expression-visitor.cc", |
| 806 "src/ast/ast-expression-visitor.h", | 804 "src/ast/ast-expression-visitor.h", |
| 807 "src/ast/ast-literal-reindexer.cc", | 805 "src/ast/ast-literal-reindexer.cc", |
| 808 "src/ast/ast-literal-reindexer.h", | 806 "src/ast/ast-literal-reindexer.h", |
| (...skipping 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2404 | 2402 |
| 2405 deps = [ | 2403 deps = [ |
| 2406 ":fuzzer_support", | 2404 ":fuzzer_support", |
| 2407 ] | 2405 ] |
| 2408 | 2406 |
| 2409 configs = [ ":internal_config" ] | 2407 configs = [ ":internal_config" ] |
| 2410 } | 2408 } |
| 2411 | 2409 |
| 2412 v8_fuzzer("wasm_asmjs_fuzzer") { | 2410 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2413 } | 2411 } |
| OLD | NEW |