mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-22 15:07:00 -05:00
e88ea4ad01
After the upgrade some Deno tests started crashing somewhere deep inside V8, and the cause of these crashes is unclear. This reverts the following commits: *12334ffe
Upgrade gn to 6f13aaac; make BUILD.gn compatible with it (#443) *f53f10d4
Upgrade V8 to 8.7.25 (#443)
54 lines
1.1 KiB
Text
54 lines
1.1 KiB
Text
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import("//v8/gni/v8.gni")
|
|
|
|
v8_static_library("rusty_v8") {
|
|
sources = [ "src/binding.cc" ]
|
|
deps = [
|
|
":v8",
|
|
"//build/config:shared_library_deps",
|
|
]
|
|
configs = [ ":rusty_v8_config" ]
|
|
}
|
|
|
|
v8_source_set("v8") {
|
|
deps = [
|
|
"//v8:v8",
|
|
"//v8:v8_libbase",
|
|
"//v8:v8_libplatform",
|
|
"//v8:v8_libsampler",
|
|
]
|
|
configs = [ ":rusty_v8_config" ]
|
|
}
|
|
|
|
config("rusty_v8_config") {
|
|
configs = [ "//v8:external_config" ]
|
|
cflags = []
|
|
|
|
# We need these directories in the search path to be able to include some
|
|
# internal V8 headers.
|
|
include_dirs = [
|
|
"v8",
|
|
"$target_gen_dir/v8",
|
|
]
|
|
|
|
if (is_debug) {
|
|
defines = [ "DEBUG" ]
|
|
}
|
|
|
|
if (is_clang) {
|
|
cflags += [
|
|
"-fcolor-diagnostics",
|
|
"-fansi-escape-codes",
|
|
]
|
|
}
|
|
|
|
if (is_debug && is_clang && !is_win) {
|
|
cflags += [ "-glldb" ]
|
|
}
|
|
|
|
if (is_win) {
|
|
# The `/Zl` ("omit default library name") flag makes the compiler produce
|
|
# object files that can link with both the static and dynamic CRT.
|
|
cflags += [ "/Zl" ]
|
|
}
|
|
}
|