mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-09 14:06:33 +00:00
This picks up: 222feaf3d302 Update README e38cddb83571 Lock: don’t require NativeThreadType to be a pointer type 8c599712d10c Include What You Use: <string.h> for memmove() and memcpy() ef991f44ed63 Linux: always build in C++11 mode BUG=crashpad:6 R=scottmg@chromium.org Review URL: https://codereview.chromium.org/812133002
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
# Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
vars = {
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
|
}
|
|
|
|
deps = {
|
|
'crashpad/third_party/gmock/gmock':
|
|
Var('chromium_git') + '/external/gmock@' +
|
|
'29763965ab52f24565299976b936d1265cb6a271', # svn r501
|
|
'crashpad/third_party/gtest/gtest':
|
|
Var('chromium_git') + '/external/gtest@' +
|
|
'8245545b6dc9c4703e6496d1efd19e975ad2b038', # svn r700
|
|
'crashpad/third_party/gyp/gyp':
|
|
Var('chromium_git') + '/external/gyp@' +
|
|
'46282cedf40ff7fe803be4af357b9d59050f02e4', # svn r1977
|
|
'crashpad/third_party/mini_chromium/mini_chromium':
|
|
Var('chromium_git') + '/chromium/mini_chromium@' +
|
|
'222feaf3d302b0b9d91800d1a464dfc8d2a3f7ee',
|
|
}
|
|
|
|
hooks = [
|
|
{
|
|
'name': 'gyp',
|
|
'pattern': '\.gypi?$',
|
|
'action': ['python', 'crashpad/build/gyp_crashpad.py'],
|
|
},
|
|
]
|