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 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2396 | 2398 |
2397 deps = [ | 2399 deps = [ |
2398 ":fuzzer_support", | 2400 ":fuzzer_support", |
2399 ] | 2401 ] |
2400 | 2402 |
2401 configs = [ ":internal_config" ] | 2403 configs = [ ":internal_config" ] |
2402 } | 2404 } |
2403 | 2405 |
2404 v8_fuzzer("wasm_asmjs_fuzzer") { | 2406 v8_fuzzer("wasm_asmjs_fuzzer") { |
2405 } | 2407 } |
OLD | NEW |