blob: afd36a8859be390caeec91e0c99c9eab52c46f36 [file] [log] [blame]
import("../../build/rust/rust.gni")
shared_library("wasmer_wrapper") {
sources = [
"wasmer.hh",
"wasmer_wrapper.cc",
]
deps = [ ":wasmer_lib" ]
if (is_linux) {
libs = [ "rt" ]
}
ldflags = [ "-Wl,--no-as-needed" ] # Force linking of all wasmer symbols.
}
rust_library("wasmer_lib") {
lib_name = "wasmer"
}