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

Unified Diff: build/config/BUILDCONFIG.gn

Issue 2648543003: Android: Add no-op configs for hiding symbols by default (Closed)
Patch Set: Created 3 years, 11 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 | build/config/android/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILDCONFIG.gn
diff --git a/build/config/BUILDCONFIG.gn b/build/config/BUILDCONFIG.gn
index c8b19d770c53cdee412b2554df689d558d161f3c..edefb2c6ced883c0d4a8a3e40089cf9b4c6ddf82 100644
--- a/build/config/BUILDCONFIG.gn
+++ b/build/config/BUILDCONFIG.gn
@@ -568,8 +568,10 @@ default_shared_library_configs = default_compiler_configs + [
if (is_android) {
# Strip native JNI exports from shared libraries by default. Binaries that
# want this can remove this config.
- default_shared_library_configs +=
- [ "//build/config/android:hide_native_jni_exports" ]
+ default_shared_library_configs += [
+ "//build/config/android:hide_native_jni_exports",
+ "//build/config/android:hide_all_but_jni_onload",
+ ]
}
set_defaults("shared_library") {
configs = default_shared_library_configs
@@ -647,7 +649,10 @@ set_defaults("component") {
if (is_component_build) {
configs = default_shared_library_configs
if (is_android) {
- configs -= [ "//build/config/android:hide_native_jni_exports" ]
+ configs -= [
+ "//build/config/android:hide_native_jni_exports",
+ "//build/config/android:hide_all_but_jni_onload",
+ ]
}
} else {
configs = default_compiler_configs
« no previous file with comments | « no previous file | build/config/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698