Add DEPS.chromium to share dEQP deps with Chrome.

This file will allow ANGLE to update the build files and roll dEQP
in the same CL, making life a pleasure to live for maintainers.

BUG=chromium:605987

Change-Id: I8f574e80a5f7b176f08a9f51c2369e042cae56b7
Reviewed-on: https://chromium-review.googlesource.com/343010
Reviewed-by: Jamie Madill <jmadill@chromium.org>
diff --git a/DEPS.chromium b/DEPS.chromium
new file mode 100644
index 0000000..a2f33b8
--- /dev/null
+++ b/DEPS.chromium
@@ -0,0 +1,26 @@
+# This file is used to manage the ANGLE's dependencies in the Chromium src repo. It is
+# used by gclient to determine what version of each dependency to check out, and
+# where.
+#
+# These deps are duplicated in ANGLE's DEPS file which we use for the standalone
+# build. The dual file setup is necessary because Chromium can only recurse into
+# a single file and we do not want to import all of ANGLE's standalone DEPS.
+#
+# If you make a change to one of these dependencies please also update the
+# standalone DEPS file.
+
+vars = {
+  'android_git': 'https://android.googlesource.com',
+  'deqp_revision': 'cc0ded6c77267bbb14d21aac358fc5d9690c07f8',
+}
+
+deps_os = {
+  'win': {
+    'src/third_party/deqp/src':
+      Var('android_git') + '/platform/external/deqp@' + Var('deqp_revision'),
+  },
+  'unix': {
+    'src/third_party/deqp/src':
+      Var('android_git') + '/platform/external/deqp@' + Var('deqp_revision'),
+  }
+}