mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
Fix android build
This commit is contained in:
parent
cc29ac6716
commit
daccaf0a3b
@ -1388,7 +1388,7 @@ component("base") {
|
|||||||
# 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 &&
|
if (!use_sysroot &&
|
||||||
(is_android || ((is_linux || is_chromeos) && !is_chromecast)) &&
|
((is_linux || is_chromeos) && !is_chromecast) &&
|
||||||
host_toolchain != "//build/toolchain/cros:host") {
|
host_toolchain != "//build/toolchain/cros:host") {
|
||||||
libs += [ "atomic" ]
|
libs += [ "atomic" ]
|
||||||
}
|
}
|
||||||
|
11
src/buildtools/third_party/libc++abi/BUILD.gn
vendored
11
src/buildtools/third_party/libc++abi/BUILD.gn
vendored
@ -109,4 +109,15 @@ source_set("libc++abi") {
|
|||||||
"//build/config/compiler:no_rtti",
|
"//build/config/compiler:no_rtti",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
if (is_android) {
|
||||||
|
sources += [
|
||||||
|
"trunk/src/private_typeinfo.cpp",
|
||||||
|
]
|
||||||
|
configs -= [
|
||||||
|
"//build/config/compiler:no_rtti",
|
||||||
|
]
|
||||||
|
configs += [
|
||||||
|
"//build/config/compiler:rtti",
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,6 +61,6 @@ if [ "$USE_ANDROID_NDK" -a ! -d third_party/android_ndk ]; then
|
|||||||
git -c advice.detachedHead=false checkout "$android_ndk_version"
|
git -c advice.detachedHead=false checkout "$android_ndk_version"
|
||||||
rm -rf .git
|
rm -rf .git
|
||||||
find toolchains -type f -regextype egrep \! -regex \
|
find toolchains -type f -regextype egrep \! -regex \
|
||||||
'.*(lib(atomic|gcc|gcc_real|compiler_rt-extras|android_support|unwind).a|crt.*o|lib(android|c|dl|log|m).so|usr/local.*|usr/include.*)' -delete
|
'.*(crt.*o|lib(android|c|dl|log|m).so|usr/local.*|usr/include.*)' -delete
|
||||||
cd ../..
|
cd ../..
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user