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

Unified Diff: build/android/gyp/create_test_runner_script.py

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 | « no previous file | build/android/gyp/write_build_config.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/create_test_runner_script.py
diff --git a/build/android/gyp/create_test_runner_script.py b/build/android/gyp/create_test_runner_script.py
index 69c821f4e80157375c03eba6e6c0aa2787e2ed61..f6a2c3dd47466182f1cf360d996d9a78be0060ca 100755
--- a/build/android/gyp/create_test_runner_script.py
+++ b/build/android/gyp/create_test_runner_script.py
@@ -82,6 +82,7 @@ def main(args):
group.add_argument('--android-manifest-path')
group.add_argument('--resource-zips')
group.add_argument('--robolectric-runtime-deps-dir')
+ group.add_argument('--enable-relocation-packing')
args, test_runner_args = parser.parse_known_args(
build_utils.ExpandFileArgs(args))
@@ -94,6 +95,8 @@ def main(args):
test_runner_path = RelativizePathToScript(test_runner_path)
test_runner_path_args = []
+ if args.enable_relocation_packing and args.enable_relocation_packing == "1":
+ test_runner_args.append('--enable-relocation-packing')
if args.additional_apk_list:
args.additional_apks.extend(
build_utils.ParseGnList(args.additional_apk_list))
« no previous file with comments | « no previous file | build/android/gyp/write_build_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698