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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/steps.py

Issue 1898823002: Reland of Switch Android gtests to use generated wrapper scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Add back in a TODO comment 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
Index: scripts/slave/recipe_modules/chromium_tests/steps.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/steps.py b/scripts/slave/recipe_modules/chromium_tests/steps.py
index 1f3c92f2a29c43ed1b1e4726215049d7820b473a..4c82d24b99dc1d0c0c6afbab4dde1e58ff8f3258 100644
--- a/scripts/slave/recipe_modules/chromium_tests/steps.py
+++ b/scripts/slave/recipe_modules/chromium_tests/steps.py
@@ -273,7 +273,8 @@ class LocalGTestTest(Test):
return self._override_compile_targets
if api.chromium.c.TARGET_PLATFORM == 'android':
- return [self.target_name + '_apk']
+ # TODO(agrieve): Remove the _apk entry once GYP is gone.
+ return [self.target_name + '_apk', 'bin/run_%s' % self.target_name]
return [self.target_name]

Powered by Google App Engine
This is Rietveld 408576698