2016-05-24 08:54:42 +00:00
|
|
|
# Copyright 2016 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.
|
|
|
|
|
2016-06-21 23:35:19 +00:00
|
|
|
import("//build/config/sanitizers/sanitizers.gni")
|
2016-07-15 22:32:55 +00:00
|
|
|
import("//build/config/v8_target_cpu.gni")
|
2016-05-24 10:39:57 +00:00
|
|
|
|
2016-05-24 08:54:42 +00:00
|
|
|
declare_args() {
|
2016-06-30 08:58:09 +00:00
|
|
|
# Indicate if valgrind was fetched as a custom deps to make it available on
|
|
|
|
# swarming.
|
|
|
|
v8_has_valgrind = false
|
|
|
|
|
2016-07-04 07:52:08 +00:00
|
|
|
# Indicate if gcmole was fetched as a hook to make it available on swarming.
|
|
|
|
v8_gcmole = false
|
|
|
|
|
2016-06-14 10:07:22 +00:00
|
|
|
# Turns on compiler optimizations in V8 in Debug build.
|
|
|
|
v8_optimized_debug = true
|
|
|
|
|
2016-07-20 12:52:27 +00:00
|
|
|
# Support for backtrace_symbols on linux.
|
|
|
|
v8_enable_backtrace = ""
|
|
|
|
|
2016-06-03 08:16:50 +00:00
|
|
|
# Enable the snapshot feature, for fast context creation.
|
|
|
|
# http://v8project.blogspot.com/2015/09/custom-startup-snapshots.html
|
|
|
|
v8_use_snapshot = true
|
|
|
|
|
|
|
|
# Use external files for startup data blobs:
|
|
|
|
# the JS builtins sources and the start snapshot.
|
2016-07-06 15:14:07 +00:00
|
|
|
v8_use_external_startup_data = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v8_use_external_startup_data == "") {
|
|
|
|
# If not specified as a gn arg, use external startup data by default if
|
|
|
|
# a snapshot is used and if we're not on ios.
|
|
|
|
v8_use_external_startup_data = v8_use_snapshot && !is_ios
|
2016-05-24 10:39:57 +00:00
|
|
|
}
|
2016-06-14 10:07:22 +00:00
|
|
|
|
2016-07-20 12:52:27 +00:00
|
|
|
if (v8_enable_backtrace == "") {
|
2016-07-22 18:13:08 +00:00
|
|
|
v8_enable_backtrace = is_debug && !v8_optimized_debug
|
2016-07-20 12:52:27 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 10:07:22 +00:00
|
|
|
###############################################################################
|
|
|
|
# Templates
|
|
|
|
#
|
|
|
|
|
|
|
|
# Points to // in v8 stand-alone or to //v8/ in chromium. We need absolute
|
|
|
|
# paths for all configs in templates as they are shared in different
|
|
|
|
# subdirectories.
|
2016-07-20 09:16:27 +00:00
|
|
|
v8_path_prefix = get_path_info("../", "abspath")
|
2016-06-14 10:07:22 +00:00
|
|
|
|
|
|
|
# Common configs to remove or add in all v8 targets.
|
2016-07-20 09:16:27 +00:00
|
|
|
v8_remove_configs = [ "//build/config/compiler:chromium_code" ]
|
|
|
|
v8_add_configs = [
|
2016-06-14 10:07:22 +00:00
|
|
|
"//build/config/compiler:no_chromium_code",
|
2016-07-20 09:16:27 +00:00
|
|
|
v8_path_prefix + ":features",
|
|
|
|
v8_path_prefix + ":toolchain",
|
2016-06-14 10:07:22 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if (is_debug && !v8_optimized_debug) {
|
2016-07-20 09:16:27 +00:00
|
|
|
v8_remove_configs += [ "//build/config/compiler:default_optimization" ]
|
|
|
|
v8_add_configs += [ "//build/config/compiler:no_optimize" ]
|
2016-06-14 10:07:22 +00:00
|
|
|
} else {
|
2016-07-20 09:16:27 +00:00
|
|
|
v8_remove_configs += [ "//build/config/compiler:default_optimization" ]
|
2016-06-21 23:35:19 +00:00
|
|
|
|
|
|
|
# TODO(crbug.com/621335) Rework this so that we don't have the confusion
|
|
|
|
# between "optimize_speed" and "optimize_max".
|
2016-07-27 07:47:16 +00:00
|
|
|
if (is_posix && !is_android && !using_sanitizer) {
|
2016-07-20 09:16:27 +00:00
|
|
|
v8_add_configs += [ "//build/config/compiler:optimize_speed" ]
|
2016-06-21 23:35:19 +00:00
|
|
|
} else {
|
2016-07-20 09:16:27 +00:00
|
|
|
v8_add_configs += [ "//build/config/compiler:optimize_max" ]
|
2016-06-21 23:35:19 +00:00
|
|
|
}
|
2016-06-14 10:07:22 +00:00
|
|
|
}
|
|
|
|
|
2016-07-20 12:52:27 +00:00
|
|
|
if (is_posix && v8_enable_backtrace) {
|
|
|
|
v8_remove_configs += [ "//build/config/gcc:symbol_visibility_hidden" ]
|
|
|
|
v8_add_configs += [ "//build/config/gcc:symbol_visibility_default" ]
|
|
|
|
}
|
|
|
|
|
2016-06-14 10:07:22 +00:00
|
|
|
# All templates should be kept in sync.
|
|
|
|
template("v8_source_set") {
|
|
|
|
source_set(target_name) {
|
|
|
|
forward_variables_from(invoker, "*", [ "configs" ])
|
|
|
|
configs += invoker.configs
|
2016-07-20 09:16:27 +00:00
|
|
|
configs -= v8_remove_configs
|
|
|
|
configs += v8_add_configs
|
2016-06-14 10:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template("v8_executable") {
|
|
|
|
executable(target_name) {
|
2016-10-12 09:59:31 +00:00
|
|
|
forward_variables_from(invoker,
|
|
|
|
"*",
|
|
|
|
[
|
|
|
|
"configs",
|
|
|
|
"remove_configs",
|
|
|
|
])
|
|
|
|
if (defined(invoker.remove_configs)) {
|
|
|
|
configs -= invoker.remove_configs
|
|
|
|
}
|
2016-06-14 10:07:22 +00:00
|
|
|
configs += invoker.configs
|
2016-07-20 09:16:27 +00:00
|
|
|
configs -= v8_remove_configs
|
|
|
|
configs += v8_add_configs
|
2016-07-27 11:43:42 +00:00
|
|
|
if (is_linux) {
|
|
|
|
# For enabling ASLR.
|
|
|
|
ldflags = [ "-pie" ]
|
2016-07-15 14:53:57 +00:00
|
|
|
}
|
2016-06-14 10:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template("v8_component") {
|
|
|
|
component(target_name) {
|
|
|
|
forward_variables_from(invoker, "*", [ "configs" ])
|
|
|
|
configs += invoker.configs
|
2016-07-20 09:16:27 +00:00
|
|
|
configs -= v8_remove_configs
|
|
|
|
configs += v8_add_configs
|
2016-06-14 10:07:22 +00:00
|
|
|
}
|
|
|
|
}
|