OLD | NEW |
1 # Copyright 2014 The Crashpad Authors. All rights reserved. | 1 # Copyright 2014 The Crashpad Authors. All rights reserved. |
2 # | 2 # |
3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
6 # | 6 # |
7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
8 # | 8 # |
9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 # See the License for the specific language governing permissions and | 12 # See the License for the specific language governing permissions and |
13 # limitations under the License. | 13 # limitations under the License. |
14 | 14 |
15 vars = { | 15 vars = { |
16 'chromium_git': 'https://chromium.googlesource.com', | 16 'chromium_git': 'https://chromium.googlesource.com', |
17 } | 17 } |
18 | 18 |
19 deps = { | 19 deps = { |
20 'crashpad/third_party/gmock/gmock': | |
21 Var('chromium_git') + '/external/gmock@' + | |
22 '29763965ab52f24565299976b936d1265cb6a271', # svn r501 | |
23 'crashpad/third_party/gtest/gtest': | 20 'crashpad/third_party/gtest/gtest': |
24 Var('chromium_git') + '/external/gtest@' + | 21 Var('chromium_git') + '/external/github.com/google/googletest@' + |
25 '8245545b6dc9c4703e6496d1efd19e975ad2b038', # svn r700 | 22 '71a26ac68b28c61686b8941730a6b2577912e239', |
26 'crashpad/third_party/gyp/gyp': | 23 'crashpad/third_party/gyp/gyp': |
27 Var('chromium_git') + '/external/gyp@' + | 24 Var('chromium_git') + '/external/gyp@' + |
28 '01528c7244837168a1c80f06ff60fa5a9793c824', | 25 '01528c7244837168a1c80f06ff60fa5a9793c824', |
29 'crashpad/third_party/mini_chromium/mini_chromium': | 26 'crashpad/third_party/mini_chromium/mini_chromium': |
30 Var('chromium_git') + '/chromium/mini_chromium@' + | 27 Var('chromium_git') + '/chromium/mini_chromium@' + |
31 'ea8d8de53f9407d57cab716fef2a36b6bf1b78b2', | 28 'ea8d8de53f9407d57cab716fef2a36b6bf1b78b2', |
32 'buildtools': | 29 'buildtools': |
33 Var('chromium_git') + '/chromium/buildtools.git@' + | 30 Var('chromium_git') + '/chromium/buildtools.git@' + |
34 'c2f259809d5ede3275df5ea0842f0431990c4f98', | 31 'c2f259809d5ede3275df5ea0842f0431990c4f98', |
35 } | 32 } |
(...skipping 26 matching lines...) Expand all Loading... |
62 '--sha1_file', | 59 '--sha1_file', |
63 'buildtools/win/clang-format.exe.sha1', | 60 'buildtools/win/clang-format.exe.sha1', |
64 ], | 61 ], |
65 }, | 62 }, |
66 { | 63 { |
67 'name': 'gyp', | 64 'name': 'gyp', |
68 'pattern': '\.gypi?$', | 65 'pattern': '\.gypi?$', |
69 'action': ['python', 'crashpad/build/gyp_crashpad.py'], | 66 'action': ['python', 'crashpad/build/gyp_crashpad.py'], |
70 }, | 67 }, |
71 ] | 68 ] |
OLD | NEW |