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

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

Issue 1897823006: Reland of Switch Android gtests to use generated wrapper scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: remove bin/run_ script 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..f45e8a4052fadc972e7549de8c175fda4e74db99 100644
--- a/scripts/slave/recipe_modules/chromium_tests/steps.py
+++ b/scripts/slave/recipe_modules/chromium_tests/steps.py
@@ -273,6 +273,8 @@ class LocalGTestTest(Test):
return self._override_compile_targets
if api.chromium.c.TARGET_PLATFORM == 'android':
+ # TODO(agrieve): Remove _apk suffix in favour of bin/run_${target} once
+ # GYP is gone. http://crbug.com/599919
return [self.target_name + '_apk']
return [self.target_name]
@@ -824,6 +826,8 @@ class SwarmingGTestTest(SwarmingTest):
return [self.target_name, self.target_name + '_run']
def isolate_target(self, api):
+ # TODO(agrieve): Remove _apk suffix in favour of bin/run_${target} once
+ # GYP is gone. http://crbug.com/599919
if api.chromium.c.TARGET_PLATFORM == 'android':
return self.target_name + '_apk'
return self.target_name

Powered by Google App Engine
This is Rietveld 408576698