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

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

Issue 2974163002: Fix the stack script issue when symbolizing tombstones. (Closed)
Patch Set: add todo and crbug; revert changes for intentional crash test case 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
« no previous file with comments | « build/android/tombstones.py ('k') | build/config/android/rules.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/internal_rules.gni
diff --git a/build/config/android/internal_rules.gni b/build/config/android/internal_rules.gni
index 3714b1f70b5df6f6f004919463f1168e9c50ea3f..ae139143d08b8e9c86601eb28d33aa74cd8e3510 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -316,7 +316,12 @@ template("write_build_config") {
}
}
}
-
+ if (defined(invoker.enable_relocation_packing)) {
+ args += [
+ "--enable-relocation-packing",
+ invoker.enable_relocation_packing,
+ ]
+ }
if (defined(invoker.java_sources_file)) {
args += [
"--java-sources-file",
@@ -556,6 +561,10 @@ template("test_runner_script") {
_apk_under_test = "@FileArg($_rebased_apk_under_test_build_config:deps_info:incremental_apk_path)"
}
test_runner_args += [ "--apk-under-test=$_apk_under_test" ]
+ test_runner_args += [
+ "--enable-relocation-packing",
+ "@FileArg($_rebased_apk_under_test_build_config:deps_info:enable_relocation_packing)",
+ ]
}
if (emma_coverage) {
# Set a default coverage output directory (can be overridden by user
« no previous file with comments | « build/android/tombstones.py ('k') | build/config/android/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698