2019-05-28 09:15:48 +00:00
|
|
|
# Copyright 2019 The V8 project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
import("../../gni/v8.gni")
|
|
|
|
|
|
|
|
v8_executable("wasm_api_tests") {
|
|
|
|
testonly = true
|
|
|
|
|
|
|
|
deps = [
|
2021-03-02 17:38:53 +00:00
|
|
|
"../:common_test_headers",
|
2021-03-01 12:14:54 +00:00
|
|
|
"../..:v8_internal_headers",
|
2019-05-28 09:15:48 +00:00
|
|
|
"../..:v8_maybe_icu",
|
|
|
|
"../..:wee8",
|
|
|
|
"//build/win:default_exe_manifest",
|
|
|
|
"//testing/gmock",
|
|
|
|
"//testing/gtest",
|
|
|
|
]
|
|
|
|
|
2021-03-01 12:14:54 +00:00
|
|
|
data_deps = [ "../../tools:v8_testrunner" ]
|
2019-05-28 09:15:48 +00:00
|
|
|
|
|
|
|
data = [
|
|
|
|
"testcfg.py",
|
|
|
|
"wasm-api-tests.status",
|
|
|
|
]
|
|
|
|
|
|
|
|
configs = [ "../..:internal_config_base" ]
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"../../testing/gmock-support.h",
|
|
|
|
"../../testing/gtest-support.h",
|
|
|
|
"callbacks.cc",
|
2019-07-03 11:32:46 +00:00
|
|
|
"finalize.cc",
|
2019-07-08 11:55:29 +00:00
|
|
|
"globals.cc",
|
2019-08-19 12:26:07 +00:00
|
|
|
"hostref.cc",
|
2019-07-08 16:07:51 +00:00
|
|
|
"memory.cc",
|
2019-08-20 14:08:31 +00:00
|
|
|
"multi-return.cc",
|
2019-07-09 13:06:52 +00:00
|
|
|
"reflect.cc",
|
2022-06-06 19:44:32 +00:00
|
|
|
"regressions.cc",
|
2019-05-28 09:15:48 +00:00
|
|
|
"run-all-wasm-api-tests.cc",
|
2019-07-11 09:18:58 +00:00
|
|
|
"serialize.cc",
|
2019-08-22 17:17:51 +00:00
|
|
|
"startup-errors.cc",
|
2019-07-11 13:48:21 +00:00
|
|
|
"table.cc",
|
2019-07-12 14:00:53 +00:00
|
|
|
"threads.cc",
|
2019-07-12 14:52:32 +00:00
|
|
|
"traps.cc",
|
2019-07-03 11:32:46 +00:00
|
|
|
"wasm-api-test.h",
|
2019-05-28 09:15:48 +00:00
|
|
|
]
|
|
|
|
}
|