This is necessary in some circumstances when building internally, and is harmless otherwise. PiperOrigin-RevId: 358372796 Change-Id: Ib53a5bc1e45acb7fb3fceee91ea25fe7e69283c4
16 lines
263 B
Plaintext
16 lines
263 B
Plaintext
VERS_1.0 {
|
|
# Export JNI and native C symbols.
|
|
global:
|
|
Java_*;
|
|
JNI_OnLoad;
|
|
JNI_OnUnload;
|
|
TfLite*;
|
|
|
|
# Required for libunwind. This is needed if built and then run internally.
|
|
google_find_phdr;
|
|
|
|
# Hide everything else.
|
|
local:
|
|
*;
|
|
};
|