2019-10-31 12:03:44 -04:00
|
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2020-10-31 08:32:33 -04:00
|
|
|
import("//build/config/host_byteorder.gni")
|
2019-10-31 12:03:44 -04:00
|
|
|
|
2020-08-26 20:09:12 -04:00
|
|
|
static_library("rusty_v8") {
|
|
|
|
complete_static_lib = true
|
2020-04-12 18:48:47 -04:00
|
|
|
sources = [ "src/binding.cc" ]
|
2019-10-31 12:03:44 -04:00
|
|
|
deps = [
|
2019-11-15 12:57:34 -05:00
|
|
|
"//build/config:shared_library_deps",
|
2019-11-19 17:48:50 -05:00
|
|
|
"//v8:v8",
|
|
|
|
"//v8:v8_libbase",
|
|
|
|
"//v8:v8_libplatform",
|
2019-10-31 12:03:44 -04:00
|
|
|
]
|
2020-08-26 20:09:12 -04:00
|
|
|
configs -= [
|
|
|
|
"//build/config/compiler:default_init_stack_vars",
|
|
|
|
"//build/config/compiler:thin_archive",
|
|
|
|
]
|
|
|
|
configs += [ ":rusty_v8_config" ]
|
2019-10-31 12:03:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
config("rusty_v8_config") {
|
2021-05-11 12:57:49 -04:00
|
|
|
configs = [
|
|
|
|
"//v8:external_config",
|
|
|
|
"//v8:toolchain",
|
|
|
|
"//v8:features",
|
|
|
|
]
|
2019-10-31 12:03:44 -04:00
|
|
|
cflags = []
|
|
|
|
|
2020-04-12 20:18:05 -04:00
|
|
|
# We need these directories in the search path to be able to include some
|
|
|
|
# internal V8 headers.
|
|
|
|
include_dirs = [
|
|
|
|
"v8",
|
|
|
|
"$target_gen_dir/v8",
|
|
|
|
]
|
|
|
|
|
2019-10-31 12:03:44 -04:00
|
|
|
if (is_debug) {
|
|
|
|
defines = [ "DEBUG" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_clang) {
|
|
|
|
cflags += [
|
|
|
|
"-fcolor-diagnostics",
|
|
|
|
"-fansi-escape-codes",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|