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 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
781 "src/api-experimental.cc", | 781 "src/api-experimental.cc", |
782 "src/api-experimental.h", | 782 "src/api-experimental.h", |
783 "src/api-natives.cc", | 783 "src/api-natives.cc", |
784 "src/api-natives.h", | 784 "src/api-natives.h", |
785 "src/api.cc", | 785 "src/api.cc", |
786 "src/api.h", | 786 "src/api.h", |
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", |
| 792 "src/asmjs/asm-typer.h", |
791 "src/asmjs/asm-types.cc", | 793 "src/asmjs/asm-types.cc", |
792 "src/asmjs/asm-types.h", | 794 "src/asmjs/asm-types.h", |
793 "src/asmjs/asm-wasm-builder.cc", | 795 "src/asmjs/asm-wasm-builder.cc", |
794 "src/asmjs/asm-wasm-builder.h", | 796 "src/asmjs/asm-wasm-builder.h", |
795 "src/asmjs/typing-asm.cc", | 797 "src/asmjs/typing-asm.cc", |
796 "src/asmjs/typing-asm.h", | 798 "src/asmjs/typing-asm.h", |
797 "src/assembler.cc", | 799 "src/assembler.cc", |
798 "src/assembler.h", | 800 "src/assembler.h", |
799 "src/assert-scope.cc", | 801 "src/assert-scope.cc", |
800 "src/assert-scope.h", | 802 "src/assert-scope.h", |
(...skipping 1594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2395 | 2397 |
2396 deps = [ | 2398 deps = [ |
2397 ":fuzzer_support", | 2399 ":fuzzer_support", |
2398 ] | 2400 ] |
2399 | 2401 |
2400 configs = [ ":internal_config" ] | 2402 configs = [ ":internal_config" ] |
2401 } | 2403 } |
2402 | 2404 |
2403 v8_fuzzer("wasm_asmjs_fuzzer") { | 2405 v8_fuzzer("wasm_asmjs_fuzzer") { |
2404 } | 2406 } |
OLD | NEW |