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

Unified Diff: build/android/pylib/browsertests/dispatch.py

Issue 19040002: [Android] Convert more test targets to use isolate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/android/pylib/browsertests/dispatch.py
diff --git a/build/android/pylib/browsertests/dispatch.py b/build/android/pylib/browsertests/dispatch.py
index 8457cf2f618986b8f1bad9770d3273bf9eabf35a..3d7449aadc6c5a5496bb53e573afd136c363c58f 100644
--- a/build/android/pylib/browsertests/dispatch.py
+++ b/build/android/pylib/browsertests/dispatch.py
@@ -46,6 +46,9 @@ def Dispatch(options):
'apks',
constants.BROWSERTEST_SUITE_NAME + '.apk')
+ deps_dir = gtest_dispatch._GenerateDepsDirUsingIsolate(
+ constants.BROWSERTEST_SUITE_NAME, options.build_type)
+
# Constructs a new TestRunner with the current options.
def RunnerFactory(device, shard_index):
return test_runner.TestRunner(
@@ -60,7 +63,8 @@ def Dispatch(options):
options.push_deps,
constants.BROWSERTEST_TEST_PACKAGE_NAME,
constants.BROWSERTEST_TEST_ACTIVITY_NAME,
- constants.BROWSERTEST_COMMAND_LINE_FILE)
+ constants.BROWSERTEST_COMMAND_LINE_FILE,
+ deps_dir=deps_dir)
# Get tests and split them up based on the number of devices.
all_enabled = gtest_dispatch.GetAllEnabledTests(RunnerFactory,

Powered by Google App Engine
This is Rietveld 408576698