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

Unified Diff: build/android/pylib/instrumentation/setup.py

Issue 1564583003: [Android] Add APK under test and additional APK support for the old mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/android/pylib/instrumentation/test_options.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/instrumentation/setup.py
diff --git a/build/android/pylib/instrumentation/setup.py b/build/android/pylib/instrumentation/setup.py
index ceaab042aa1ff788d64cfd9c91661d6835aebcfc..b40137114e3eb621cd3ee11a3c56d0148c82304f 100644
--- a/build/android/pylib/instrumentation/setup.py
+++ b/build/android/pylib/instrumentation/setup.py
@@ -75,9 +75,12 @@ def Setup(test_options, devices):
os.path.exists(test_options.coverage_dir)):
os.makedirs(test_options.coverage_dir)
- test_pkg = test_package.TestPackage(test_options.test_apk_path,
- test_options.test_apk_jar_path,
- test_options.test_support_apk_path)
+ test_pkg = test_package.TestPackage(
+ test_options.test_apk_path,
+ test_options.test_apk_jar_path,
+ test_options.test_support_apk_path,
+ additional_apks=test_options.additional_apks,
+ apk_under_test=test_options.apk_under_test)
tests = test_pkg.GetAllMatchingTests(
test_options.annotations,
test_options.exclude_annotations,
« no previous file with comments | « no previous file | build/android/pylib/instrumentation/test_options.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698