Commit 53b8550a authored by bsheedy's avatar bsheedy Committed by Commit Bot

Remove gclient config option to add VR APK hooks

Reverts the changes from https://chromium-review.googlesource.com/c/437710/
It was decided to add the hooks to src/DEPS instead of trying to get
bot-specific hooks to work.

BUG=

Change-Id: I1d995eafc282e7a9b6ab9b4b2805904344943e27
Reviewed-on: https://chromium-review.googlesource.com/446679Reviewed-by: 's avatarRyan Tseng <hinoka@chromium.org>
Commit-Queue: Brian Sheedy <bsheedy@google.com>
parent 5e36e2c4
......@@ -596,31 +596,3 @@ def chromedriver(c):
@config_ctx()
def ndk_next(c):
c.revisions['src/third_party/android_tools/ndk'] = 'origin/next'
@config_ctx()
def android_vr_apks(c):
"""Add VR Services and Daydream Home APKs to the gclient hooks."""
c.hooks.extend([
str({
'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'
],
}),
str({
'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'
],
})
])
......@@ -13,7 +13,6 @@ DEPS = [
TEST_CONFIGS = [
'android',
'android_bare',
'android_vr_apks',
'blink',
'boringssl',
'build_internal',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment