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

Unified Diff: build/config/android/rules.gni

Issue 2974163002: Fix the stack script issue when symbolizing tombstones. (Closed)
Patch Set: address John's comments Created 3 years, 5 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
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index e7a2c5b53ff072a4f928da1793097917ebaf0487..6d979fcd8479bbfaf3a9d3243ad33defec4dabd7 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1842,6 +1842,11 @@ if (enable_java_templates) {
if (_proguard_enabled) {
proguard_info = "$_proguard_output_jar_path.info"
}
+ if (_enable_relocation_packing) {
+ enable_relocation_packing = "1"
+ } else {
+ enable_relocation_packing = "0"
+ }
# Don't depend on the runtime_deps target in order to avoid having to
# build the native libraries just to create the .build_config file.

Powered by Google App Engine
This is Rietveld 408576698