提交 a4be8601 编写于 作者: A Adam Barth

Only use the .cr.so product extension on Android in the component build

This change matches what GYP does.

R=brettw@chromium.org
上级 c5ac25f4
......@@ -171,9 +171,13 @@ if (is_android) {
android_libcpp_library = "c++_static"
}
# By appending .cr, we prevent name collisions with libraries already
# loaded by the Android zygote.
android_product_extension = ".cr.so"
if (component_mode == "shared_library") {
# By appending .cr, we prevent name collisions with libraries already
# loaded by the Android zygote.
android_product_extension = ".cr.so"
} else {
android_product_extension = ".so"
}
# ABI ------------------------------------------------------------------------
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册