in preparation for the build for windows
This commit is contained in:
parent
9832622c39
commit
3d1f8a1c0d
@ -1,7 +1,6 @@
|
|||||||
|
|
||||||
declare_args() {
|
declare_args() {
|
||||||
_is_debug_build = ""
|
_is_debug_build = ""
|
||||||
target_cpu = "x64"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_is_debug_build = getenv("TARGET_ISDEBUG")
|
_is_debug_build = getenv("TARGET_ISDEBUG")
|
||||||
@ -15,14 +14,21 @@ if(getenv("TARGET_CPU") != "") {
|
|||||||
|
|
||||||
enable_kythe_annotations = true
|
enable_kythe_annotations = true
|
||||||
# clang_use_chrome_plugins = false
|
# clang_use_chrome_plugins = false
|
||||||
|
if (target_os == "android") {
|
||||||
chrome_public_manifest_package = "org.bromite.bromite.dev"
|
chrome_public_manifest_package = "org.bromite.bromite.dev"
|
||||||
|
}
|
||||||
|
|
||||||
if(_is_debug_build == "true") {
|
if(_is_debug_build == "true") {
|
||||||
# print("Debug build on")
|
# print("Debug build on")
|
||||||
is_debug = true
|
is_debug = true
|
||||||
is_official_build = false
|
is_official_build = false
|
||||||
dcheck_always_on = true
|
dcheck_always_on = true
|
||||||
|
if (target_os == "win") {
|
||||||
|
symbol_level = 0
|
||||||
|
use_large_pdbs = true
|
||||||
|
} else {
|
||||||
symbol_level = 1
|
symbol_level = 1
|
||||||
|
}
|
||||||
strip_debug_info = false
|
strip_debug_info = false
|
||||||
generate_linker_map = false
|
generate_linker_map = false
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user