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

Unified Diff: DEPS

Issue 2726243002: Move VR test APK downloading behind an env var (Closed)
Patch Set: print check_output > check_call Created 3 years, 10 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 | « no previous file | third_party/gvr-android-sdk/test-apks/update.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index ed9b4636eb855c47bb1ae667595311add25ccfc4..1c1fc8549e9e9b2fe3d0dc104c1a042e57abb322 100644
--- a/DEPS
+++ b/DEPS
@@ -775,28 +775,6 @@ hooks = [
'-l', 'third_party/xstream'
],
},
- # Downloads the VR Services and Daydream Home APKs used for VR testing on
- # Android.
- {
- 'name': 'vr_services_apks',
- 'pattern': '.',
- 'action': ['python',
- 'src/build/android/update_deps/update_third_party_deps.py',
- 'download',
- '-b', 'chrome-vr-test-apks/vr_services',
- '-l', 'third_party/gvr-android-sdk/test-apks/vr_services'
- ],
- },
- {
- 'name': 'daydream_home_apks',
- 'pattern': '.',
- 'action': ['python',
- 'src/build/android/update_deps/update_third_party_deps.py',
- 'download',
- '-b', 'chrome-vr-test-apks/daydream_home',
- '-l', 'third_party/gvr-android-sdk/test-apks/daydream_home'
- ],
- },
{
# Downloads the current stable linux sysroot to build/linux/ if needed.
# This sysroot updates at about the same rate that the chrome build deps
@@ -1148,6 +1126,14 @@ hooks = [
'-s', 'src/third_party/node/node_modules.tar.gz.sha1',
],
},
+ # Download VR test APKs only if the environment variable is set
+ {
+ 'name': 'vr_test_apks',
+ 'pattern': '.',
+ 'action': [ 'python',
+ 'src/third_party/gvr-android-sdk/test-apks/update.py',
+ ],
+ },
]
recursedeps = [
« no previous file with comments | « no previous file | third_party/gvr-android-sdk/test-apks/update.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698