node/deps/v8/tools/wasm/BUILD.gn
Michaël Zasso cfbf9e0d14 deps: update V8 to 12.4.254.14
PR-URL: https://github.com/nodejs/node/pull/52465
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2024-04-22 21:25:15 +00:00

40 lines
767 B
Plaintext

# Copyright 2022 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")
config("internal_config") {
visibility = [ ":*" ] # Only targets in this file can depend on this.
include_dirs = [
".",
"../..",
"../../include/",
"$target_gen_dir/../..",
]
}
# Wasm Module Inspector
v8_executable("wami") {
testonly = true
deps = [
"../..:v8",
"../..:v8_libbase",
"../..:v8_libplatform",
]
sources = [
"mjsunit-module-disassembler-impl.h",
"module-inspector.cc",
]
defines = []
configs = [ ":internal_config" ]
if (v8_enable_i18n_support) {
configs += [ "$v8_icu_path:icu_config" ]
}
}