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

Unified Diff: scripts/slave/recipes/android_webview_aosp.py

Issue 24737002: Add Paths as first-class types in configs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 3 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/recipes/android_webview_aosp.py
diff --git a/scripts/slave/recipes/android_webview_aosp.py b/scripts/slave/recipes/android_webview_aosp.py
index 29d8290320ca0001df10a827ee58139b7a5ac860..1b45671788dcb07c580e8e81191139aa8e4e1001 100644
--- a/scripts/slave/recipes/android_webview_aosp.py
+++ b/scripts/slave/recipes/android_webview_aosp.py
@@ -37,25 +37,27 @@ def GenTests(api):
yield (
api.test('uses_android_repo') +
api.properties.scheduled() +
- api.path.exists('[SLAVE_BUILD_ROOT]/android-src/.repo/repo/repo')
+ api.path.exists(
+ api.path.slave_build('android-src', '.repo', 'repo', 'repo'))
)
yield (
api.test('doesnt_sync_if_android_present') +
api.properties.scheduled() +
- api.path.exists('[SLAVE_BUILD_ROOT]/android-src')
+ api.path.exists(api.path.slave_build('android-src'))
)
yield (
api.test('does_delete_stale_chromium') +
api.properties.scheduled() +
- api.path.exists('[SLAVE_BUILD_ROOT]/android-src/external/chromium_org')
+ api.path.exists(
+ api.path.slave_build('android-src', 'external', 'chromium_org'))
)
yield (
api.test('uses_goma_test') +
api.properties.scheduled() +
- api.path.exists('[BUILD_ROOT]/goma')
+ api.path.exists(api.path.build('goma'))
)
yield api.test('works_if_revision_not_present') + api.properties.generic()

Powered by Google App Engine
This is Rietveld 408576698