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 1467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1478 "src/utils.h", | 1478 "src/utils.h", |
1479 "src/v8.cc", | 1479 "src/v8.cc", |
1480 "src/v8.h", | 1480 "src/v8.h", |
1481 "src/v8memory.h", | 1481 "src/v8memory.h", |
1482 "src/v8threads.cc", | 1482 "src/v8threads.cc", |
1483 "src/v8threads.h", | 1483 "src/v8threads.h", |
1484 "src/version.cc", | 1484 "src/version.cc", |
1485 "src/version.h", | 1485 "src/version.h", |
1486 "src/vm-state-inl.h", | 1486 "src/vm-state-inl.h", |
1487 "src/vm-state.h", | 1487 "src/vm-state.h", |
| 1488 "src/wasm/asm-typer.cc", |
| 1489 "src/wasm/asm-typer.h", |
1488 "src/wasm/asm-types.cc", | 1490 "src/wasm/asm-types.cc", |
1489 "src/wasm/asm-types.h", | 1491 "src/wasm/asm-types.h", |
1490 "src/wasm/asm-wasm-builder.cc", | 1492 "src/wasm/asm-wasm-builder.cc", |
1491 "src/wasm/asm-wasm-builder.h", | 1493 "src/wasm/asm-wasm-builder.h", |
1492 "src/wasm/ast-decoder.cc", | 1494 "src/wasm/ast-decoder.cc", |
1493 "src/wasm/ast-decoder.h", | 1495 "src/wasm/ast-decoder.h", |
1494 "src/wasm/decoder.h", | 1496 "src/wasm/decoder.h", |
1495 "src/wasm/encoder.cc", | 1497 "src/wasm/encoder.cc", |
1496 "src/wasm/encoder.h", | 1498 "src/wasm/encoder.h", |
1497 "src/wasm/leb-helper.h", | 1499 "src/wasm/leb-helper.h", |
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2316 | 2318 |
2317 deps = [ | 2319 deps = [ |
2318 ":fuzzer_support", | 2320 ":fuzzer_support", |
2319 ] | 2321 ] |
2320 | 2322 |
2321 configs = [ ":internal_config" ] | 2323 configs = [ ":internal_config" ] |
2322 } | 2324 } |
2323 | 2325 |
2324 v8_fuzzer("wasm_asmjs_fuzzer") { | 2326 v8_fuzzer("wasm_asmjs_fuzzer") { |
2325 } | 2327 } |
OLD | NEW |