aboutsummaryrefslogtreecommitdiff
path: root/DEPS
diff options
context:
space:
mode:
authorchrisha@chromium.org <chrisha@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2014-04-02 20:18:55 +0000
committerchrisha@chromium.org <chrisha@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2014-04-02 20:18:55 +0000
commit983af7cce45c3eda8c7a04f7a17373073e8c9bf0 (patch)
treec22094606ac46f27f741db6ddc5fb05aaf36652d /DEPS
parentAdd .gitignore file. (diff)
downloadbreakpad-983af7cce45c3eda8c7a04f7a17373073e8c9bf0.tar.xz
Update DEPS to bring in gtest, gmock and GYP.
BUG=575 R=mark@chromium.org Review URL: https://breakpad.appspot.com/1304004 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1297 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'DEPS')
-rw-r--r--DEPS40
1 files changed, 31 insertions, 9 deletions
diff --git a/DEPS b/DEPS
index 33f7b659..96a3b823 100644
--- a/DEPS
+++ b/DEPS
@@ -1,5 +1,4 @@
-# Copyright (c) 2010, Google Inc.
-# All rights reserved.
+# Copyright 2010, Google Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -27,18 +26,41 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-# We only use this file to ease the steps of generating projects after
-# syncing, if we use gclient. All dependencies are svn:externals instead.
-# If you're not using gclient, you need to run the gyp python script to
-# generate the projects.
-# This can be done by the following command (assuming current directory):
-# src\tools\gyp\gyp.bat src\client\windows\breakpad_client.gyp
+# This is used to mimic the svn:externals mechanism for gclient (both Git and
+# SVN) based checkouts of Breakpad. As such, its use is entirely optional. If
+# using a manually managed SVN checkout as opposed to a gclient managed checkout
+# you can still use the hooks mechanism for generating project files by calling
+# 'gclient runhooks' rather than 'gclient sync'.
+
+deps = {
+ # Logging code.
+ "src/src/third_party/glog":
+ "http://google-glog.googlecode.com/svn/trunk@97",
+
+ # Testing libraries and utilities.
+ "src/src/testing": "http://googlemock.googlecode.com/svn/trunk@408",
+ "src/src/testing/gtest": "http://googletest.googlecode.com/svn/trunk@615",
+
+ # Protobuf.
+ "src/src/third_party/protobuf/protobuf":
+ "http://protobuf.googlecode.com/svn/trunk@407",
+
+ # GYP project generator.
+ "src/src/tools/gyp": "http://gyp.googlecode.com/svn/trunk@1472",
+
+ # Linux syscall support.
+ "src/src/third_party/lss":
+ "http://linux-syscall-support.googlecode.com/svn/trunk/lss@24",
+}
+
hooks = [
{
- # A change to a .gyp, .gypi, or to GYP itself should run the generator.
+ # TODO(chrisha): Fix the GYP files so that they work without
+ # --no-circular-check.
"pattern": ".",
"action": ["python",
"src/src/tools/gyp/gyp",
+ "--no-circular-check",
"src/src/client/windows/breakpad_client.gyp"],
},
]