mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-04 22:33:38 +03:00
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:
parent
f32e08b4e9
commit
766e0bd244
1 changed files with 4 additions and 0 deletions
|
@ -117,6 +117,10 @@ if (is_android) {
|
|||
]
|
||||
public_configs = [ ":shared_library_public_config" ]
|
||||
}
|
||||
|
||||
if (is_android) {
|
||||
configs -= [ "//build/config/android:hide_all_but_jni_onload" ]
|
||||
}
|
||||
}
|
||||
|
||||
_package_dir = "$root_out_dir/cronet"
|
||||
|
|
Loading…
Add table
Reference in a new issue