cronet: Do not hide symbols on Android shared build

The default compiler config hides all but JNI symbols, but here
it is building the shared library of Cronet C API.
This commit is contained in:
klzgrad 2022-05-04 14:52:09 +08:00
parent f181d0db9e
commit f1768756b2

View File

@ -137,6 +137,10 @@ if (is_android) {
] ]
public_configs = [ ":shared_library_public_config" ] public_configs = [ ":shared_library_public_config" ]
} }
if (is_android) {
configs -= [ "//build/config/android:hide_all_but_jni_onload" ]
}
} }
test("cronet_tests") { test("cronet_tests") {