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 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1413 "src/runtime/runtime-operators.cc", | 1413 "src/runtime/runtime-operators.cc", |
1414 "src/runtime/runtime-proxy.cc", | 1414 "src/runtime/runtime-proxy.cc", |
1415 "src/runtime/runtime-regexp.cc", | 1415 "src/runtime/runtime-regexp.cc", |
1416 "src/runtime/runtime-scopes.cc", | 1416 "src/runtime/runtime-scopes.cc", |
1417 "src/runtime/runtime-simd.cc", | 1417 "src/runtime/runtime-simd.cc", |
1418 "src/runtime/runtime-strings.cc", | 1418 "src/runtime/runtime-strings.cc", |
1419 "src/runtime/runtime-symbol.cc", | 1419 "src/runtime/runtime-symbol.cc", |
1420 "src/runtime/runtime-test.cc", | 1420 "src/runtime/runtime-test.cc", |
1421 "src/runtime/runtime-typedarray.cc", | 1421 "src/runtime/runtime-typedarray.cc", |
1422 "src/runtime/runtime-utils.h", | 1422 "src/runtime/runtime-utils.h", |
| 1423 "src/runtime/runtime-wasm.cc", |
1423 "src/runtime/runtime.cc", | 1424 "src/runtime/runtime.cc", |
1424 "src/runtime/runtime.h", | 1425 "src/runtime/runtime.h", |
1425 "src/safepoint-table.cc", | 1426 "src/safepoint-table.cc", |
1426 "src/safepoint-table.h", | 1427 "src/safepoint-table.h", |
1427 "src/signature.h", | 1428 "src/signature.h", |
1428 "src/simulator.h", | 1429 "src/simulator.h", |
1429 "src/small-pointer-list.h", | 1430 "src/small-pointer-list.h", |
1430 "src/snapshot/code-serializer.cc", | 1431 "src/snapshot/code-serializer.cc", |
1431 "src/snapshot/code-serializer.h", | 1432 "src/snapshot/code-serializer.h", |
1432 "src/snapshot/deserializer.cc", | 1433 "src/snapshot/deserializer.cc", |
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2291 | 2292 |
2292 deps = [ | 2293 deps = [ |
2293 ":fuzzer_support", | 2294 ":fuzzer_support", |
2294 ] | 2295 ] |
2295 | 2296 |
2296 configs = [ ":internal_config" ] | 2297 configs = [ ":internal_config" ] |
2297 } | 2298 } |
2298 | 2299 |
2299 v8_fuzzer("wasm_asmjs_fuzzer") { | 2300 v8_fuzzer("wasm_asmjs_fuzzer") { |
2300 } | 2301 } |
OLD | NEW |