Update resource download for webrtc.DEPS

This is needed as we've now moved over to use
the download_from_google_storage.py script in
depot tools for downloading our resource files.

TEST=local edit and gclient sync successfully downloaded
the files into the right directory.
BUG=webrtc:2294
R=phoglund@chromium.org

Review URL: https://codereview.chromium.org/60513012

git-svn-id: http://src.chromium.org/svn/trunk/deps/third_party/webrtc/webrtc.DEPS@233585 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
diff --git a/DEPS b/DEPS
index 66c99ba..cb65df8 100644
--- a/DEPS
+++ b/DEPS
@@ -16,6 +16,8 @@
   "android": {
     "src/data": 
       (Var("googlecode_url") % "webrtc") + "/trunk/data",
+    "src/resources": 
+      (Var("googlecode_url") % "webrtc") + "/trunk/resources",
     "src/third_party/gflags":
       (Var("googlecode_url") % "webrtc") + "/trunk/third_party/gflags",
     "src/third_party/gflags/src":
@@ -36,5 +38,15 @@
     "pattern": ".",
     "action" : ["python",
                 "webrtc.DEPS/copy_apprtc.py"],
-  }
+  },
+  {
+    # Download test resources, i.e. video and audio files from Google Storage.
+    "pattern": "\\.sha1",
+    "action": ["download_from_google_storage",
+               "--directory",
+               "--recursive",
+               "--num_threads=10",
+               "--bucket", "chromium-webrtc-resources",
+               "src/resources"],
+  },
 ]