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 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1401 "src/runtime/runtime-operators.cc", | 1401 "src/runtime/runtime-operators.cc", |
1402 "src/runtime/runtime-proxy.cc", | 1402 "src/runtime/runtime-proxy.cc", |
1403 "src/runtime/runtime-regexp.cc", | 1403 "src/runtime/runtime-regexp.cc", |
1404 "src/runtime/runtime-scopes.cc", | 1404 "src/runtime/runtime-scopes.cc", |
1405 "src/runtime/runtime-simd.cc", | 1405 "src/runtime/runtime-simd.cc", |
1406 "src/runtime/runtime-strings.cc", | 1406 "src/runtime/runtime-strings.cc", |
1407 "src/runtime/runtime-symbol.cc", | 1407 "src/runtime/runtime-symbol.cc", |
1408 "src/runtime/runtime-test.cc", | 1408 "src/runtime/runtime-test.cc", |
1409 "src/runtime/runtime-typedarray.cc", | 1409 "src/runtime/runtime-typedarray.cc", |
1410 "src/runtime/runtime-utils.h", | 1410 "src/runtime/runtime-utils.h", |
| 1411 "src/runtime/runtime-wasm.cc", |
1411 "src/runtime/runtime.cc", | 1412 "src/runtime/runtime.cc", |
1412 "src/runtime/runtime.h", | 1413 "src/runtime/runtime.h", |
1413 "src/safepoint-table.cc", | 1414 "src/safepoint-table.cc", |
1414 "src/safepoint-table.h", | 1415 "src/safepoint-table.h", |
1415 "src/signature.h", | 1416 "src/signature.h", |
1416 "src/simulator.h", | 1417 "src/simulator.h", |
1417 "src/small-pointer-list.h", | 1418 "src/small-pointer-list.h", |
1418 "src/snapshot/code-serializer.cc", | 1419 "src/snapshot/code-serializer.cc", |
1419 "src/snapshot/code-serializer.h", | 1420 "src/snapshot/code-serializer.h", |
1420 "src/snapshot/deserializer.cc", | 1421 "src/snapshot/deserializer.cc", |
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2346 | 2347 |
2347 deps = [ | 2348 deps = [ |
2348 ":fuzzer_support", | 2349 ":fuzzer_support", |
2349 ] | 2350 ] |
2350 | 2351 |
2351 configs = [ ":internal_config" ] | 2352 configs = [ ":internal_config" ] |
2352 } | 2353 } |
2353 | 2354 |
2354 v8_fuzzer("wasm_asmjs_fuzzer") { | 2355 v8_fuzzer("wasm_asmjs_fuzzer") { |
2355 } | 2356 } |
OLD | NEW |