mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 09:27:09 +00:00

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>
40 lines
767 B
Plaintext
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" ]
|
|
}
|
|
}
|