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

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

Issue 2243853002: Drop unwanted dependencies on chromium_tests recipe module (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: TODO Created 4 years, 4 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 | « scripts/slave/recipe_modules/ios/__init__.py ('k') | scripts/slave/recipe_modules/webrtc/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/ios/api.py
diff --git a/scripts/slave/recipe_modules/ios/api.py b/scripts/slave/recipe_modules/ios/api.py
index e0cf6cd3bed8a98a7364b1afbff353449f791f02..469a39407260380880d5b75134875217eb312475 100644
--- a/scripts/slave/recipe_modules/ios/api.py
+++ b/scripts/slave/recipe_modules/ios/api.py
@@ -41,7 +41,7 @@ class iOSApi(recipe_api.RecipeApi):
kwargs.setdefault('force', True)
self.m.gclient.set_config('ios')
- checkout_dir = self.m.chromium_tests.get_checkout_dir({})
+ checkout_dir = self.m.chromium_checkout.get_checkout_dir({})
if checkout_dir:
kwargs.setdefault('cwd', checkout_dir)
@@ -341,7 +341,7 @@ class iOSApi(recipe_api.RecipeApi):
self.compiler == 'ninja' and
self.m.tryserver.is_tryserver and
'without patch' not in suffix):
- affected_files = self.m.chromium_tests.get_files_affected_by_patch(
+ affected_files = self.m.chromium_checkout.get_files_affected_by_patch(
cwd=self.m.path['checkout'])
# The same test may be configured to run on multiple simulators.
# Only specify each test once for the analyzer.
« no previous file with comments | « scripts/slave/recipe_modules/ios/__init__.py ('k') | scripts/slave/recipe_modules/webrtc/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698