mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 21:53:38 +00:00
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
This commit is contained in:
parent
172d57d4b4
commit
983af7cce4
1 changed files with 31 additions and 9 deletions
40
DEPS
40
DEPS
|
@ -1,5 +1,4 @@
|
||||||
# Copyright (c) 2010, Google Inc.
|
# Copyright 2010, Google Inc. All rights reserved.
|
||||||
# All rights reserved.
|
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
# modification, are permitted provided that the following conditions are
|
# 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
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# 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
|
# This is used to mimic the svn:externals mechanism for gclient (both Git and
|
||||||
# syncing, if we use gclient. All dependencies are svn:externals instead.
|
# SVN) based checkouts of Breakpad. As such, its use is entirely optional. If
|
||||||
# If you're not using gclient, you need to run the gyp python script to
|
# using a manually managed SVN checkout as opposed to a gclient managed checkout
|
||||||
# generate the projects.
|
# you can still use the hooks mechanism for generating project files by calling
|
||||||
# This can be done by the following command (assuming current directory):
|
# 'gclient runhooks' rather than 'gclient sync'.
|
||||||
# src\tools\gyp\gyp.bat src\client\windows\breakpad_client.gyp
|
|
||||||
|
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 = [
|
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": ".",
|
"pattern": ".",
|
||||||
"action": ["python",
|
"action": ["python",
|
||||||
"src/src/tools/gyp/gyp",
|
"src/src/tools/gyp/gyp",
|
||||||
|
"--no-circular-check",
|
||||||
"src/src/client/windows/breakpad_client.gyp"],
|
"src/src/client/windows/breakpad_client.gyp"],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue