bromite-buildtools/images/bromite-build/build_args.gni

30 lines
574 B
Plaintext
Raw Normal View History

2021-06-30 18:14:14 +05:30
declare_args() {
_is_debug_build = ""
2021-07-26 17:54:54 +05:30
target_cpu = "x64"
2021-06-30 18:14:14 +05:30
}
_is_debug_build = getenv("TARGET_ISDEBUG")
not_needed(["_target_build", "_is_debug_build"])
if(getenv("TARGET_CPU") != "") {
target_cpu = getenv("TARGET_CPU")
}
2021-12-01 13:03:43 +05:30
# print("Target " + target_cpu)
enable_kythe_annotations = true
2021-12-02 15:38:23 +05:30
clang_use_chrome_plugins = false
2021-06-30 18:14:14 +05:30
if(!(_is_debug_build == "")) {
2021-12-01 13:03:43 +05:30
# print("Debug build on")
2021-06-30 18:14:14 +05:30
is_debug = true
is_official_build = false
dcheck_always_on = true
symbol_level = 1
strip_debug_info = false
2021-10-10 20:31:38 +05:30
generate_linker_map = false
} else {
2021-10-10 20:31:38 +05:30
generate_linker_map = true
2021-06-30 18:14:14 +05:30
}