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

Unified Diff: scripts/slave/recipe_modules/chromium_android/api.py

Issue 1859343003: [Android] Install SystemWebView.apk for SystemWebViewShellLayoutTest.apk. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: rebase 2 Created 4 years, 8 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 | scripts/slave/recipe_modules/chromium_tests/steps.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_android/api.py
diff --git a/scripts/slave/recipe_modules/chromium_android/api.py b/scripts/slave/recipe_modules/chromium_android/api.py
index 0d0de51c38e18c2f744168001071c75590c0d51e..97adf4b0e683220c6e6d5d365778cdee7fc2576b 100644
--- a/scripts/slave/recipe_modules/chromium_android/api.py
+++ b/scripts/slave/recipe_modules/chromium_android/api.py
@@ -713,11 +713,11 @@ class AndroidApi(recipe_api.RecipeApi):
args.extend(['--test-apk', test_apk])
if apk_under_test:
args.extend(['--apk-under-test', apk_under_test])
+ for a in additional_apks or []:
+ args.extend(['--additional-apk', a])
if not wrapper_script_suite_name:
args.insert(0, 'instrumentation')
- for a in additional_apks or []:
- args.extend(['--additional-apk', a])
if isolate_file_path:
args.extend(['--isolate-file-path', isolate_file_path])
if self.m.chromium.c.BUILD_CONFIG == 'Release':
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/steps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698