Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(940)

Unified Diff: android_webview/BUILD.gn

Issue 2683013002: Reland of Android: Use linker script to hide all non-JNI symbols (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | android_webview/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/BUILD.gn
diff --git a/android_webview/BUILD.gn b/android_webview/BUILD.gn
index 0e7bb13febf83e58e469caba503f87b561875adf..6c7919a58218113621982cdf7abbe5a0688204ff 100644
--- a/android_webview/BUILD.gn
+++ b/android_webview/BUILD.gn
@@ -312,7 +312,8 @@
deps = [
":webview_entry_point",
]
- configs -= [ "//build/config/android:hide_native_jni_exports" ]
+ configs -= [ "//build/config/android:hide_all_but_jni_onload" ]
+ configs += [ "//build/config/android:hide_all_but_jni" ]
}
if (android_64bit_target_cpu) {
@@ -334,7 +335,8 @@
deps = [
":webview_entry_point",
]
- configs -= [ "//build/config/android:hide_native_jni_exports" ]
+ configs -= [ "//build/config/android:hide_all_but_jni_onload" ]
+ configs += [ "//build/config/android:hide_all_but_jni" ]
}
}
« no previous file with comments | « no previous file | android_webview/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698