mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-22 13:26:12 +03:00
base: Fix Android build adding extra -latomic
We don't use use_sysroot=true, but without it -latomic is added to is_android.
This commit is contained in:
parent
c382d3a9ea
commit
b888aebfe2
@ -1117,7 +1117,7 @@ component("base") {
|
|||||||
# Needed for <atomic> if using newer C++ library than sysroot, except if
|
# Needed for <atomic> if using newer C++ library than sysroot, except if
|
||||||
# building inside the cros_sdk environment - use host_toolchain as a
|
# building inside the cros_sdk environment - use host_toolchain as a
|
||||||
# more robust check for this.
|
# more robust check for this.
|
||||||
if (!use_sysroot && (is_android || is_chromeos || (is_linux && !is_castos)) &&
|
if (!use_sysroot && (is_chromeos || (is_linux && !is_castos)) &&
|
||||||
host_toolchain != "//build/toolchain/cros:host") {
|
host_toolchain != "//build/toolchain/cros:host") {
|
||||||
libs += [ "atomic" ]
|
libs += [ "atomic" ]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user