mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-14 22:50:58 +00: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
ef72dd7aa8
commit
7e1b26f0fc
1 changed files with 4 additions and 0 deletions
|
@ -117,6 +117,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" ]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_package_dir = "$root_out_dir/cronet"
|
_package_dir = "$root_out_dir/cronet"
|
||||||
|
|
Loading…
Add table
Reference in a new issue