Add WebRTC DEPS for Android builds.

This DEPS makes it possible to pull required additional
dependencies for Chromium that are needed to build
and execute WebRTC Android tests using Chromium's
Android test framework.

In addition to this deps solution, custom deps are needed
for src/third_party/webrtc in order to checkout the latest
code instead of the DEPS pinned revision of WebRTC stable
branch.

BUG=webrtc:2059
TEST=checked in the file in a local Subversion repo and tested
adding it as a separate solution, followed by a successful
gclient sync, with a .gclient configured for Android (see
https://code.google.com/p/chromium/wiki/AndroidBuildInstructions
for details).

R=hellner@google.com

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

git-svn-id: http://src.chromium.org/svn/trunk/deps/third_party/webrtc/webrtc.DEPS@211964 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
diff --git a/DEPS b/DEPS
new file mode 100644
index 0000000..ccb22dd
--- /dev/null
+++ b/DEPS
@@ -0,0 +1,19 @@
+# DEPS file that pulls down dependencies that are needed to build and 
+# execute WebRTC Android tests from a Chromium checkout.
+
+vars = {
+  # Use this googlecode_url variable only if there is an internal mirror for it.
+  # If you do not know, use the full path while defining your new deps entry.
+  "googlecode_url": "http://%s.googlecode.com/svn",
+}
+
+deps_os = {
+  "android": {
+    "src/data": 
+      (Var("googlecode_url") % "webrtc") + "/trunk/data",
+    "src/third_party/google-gflags":
+      (Var("googlecode_url") % "webrtc") + "/trunk/third_party/google-gflags",
+    "src/third_party/google-gflags/src":
+      "http://google-gflags.googlecode.com/svn/trunk/src@45",
+  },
+}