30 lines
574 B
Plaintext
30 lines
574 B
Plaintext
|
|
declare_args() {
|
|
_is_debug_build = ""
|
|
target_cpu = "x64"
|
|
}
|
|
|
|
_is_debug_build = getenv("TARGET_ISDEBUG")
|
|
|
|
not_needed(["_target_build", "_is_debug_build"])
|
|
|
|
if(getenv("TARGET_CPU") != "") {
|
|
target_cpu = getenv("TARGET_CPU")
|
|
}
|
|
# print("Target " + target_cpu)
|
|
|
|
enable_kythe_annotations = true
|
|
clang_use_chrome_plugins = false
|
|
|
|
if(!(_is_debug_build == "")) {
|
|
# print("Debug build on")
|
|
is_debug = true
|
|
is_official_build = false
|
|
dcheck_always_on = true
|
|
symbol_level = 1
|
|
strip_debug_info = false
|
|
generate_linker_map = false
|
|
} else {
|
|
generate_linker_map = true
|
|
}
|