| 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/gtest/gtest': | 20 'crashpad/third_party/gtest/gtest': |
| 21 Var('chromium_git') + '/external/github.com/google/googletest@' + | 21 Var('chromium_git') + '/external/github.com/google/googletest@' + |
| 22 '786564fa4a3c8e0f908acca32cce481de5481b9f', | 22 '786564fa4a3c8e0f908acca32cce481de5481b9f', |
| 23 'crashpad/third_party/gyp/gyp': | 23 'crashpad/third_party/gyp/gyp': |
| 24 Var('chromium_git') + '/external/gyp@' + | 24 Var('chromium_git') + '/external/gyp@' + |
| 25 '01528c7244837168a1c80f06ff60fa5a9793c824', | 25 '01528c7244837168a1c80f06ff60fa5a9793c824', |
| 26 'crashpad/third_party/mini_chromium/mini_chromium': | 26 'crashpad/third_party/mini_chromium/mini_chromium': |
| 27 Var('chromium_git') + '/chromium/mini_chromium@' + | 27 Var('chromium_git') + '/chromium/mini_chromium@' + |
| 28 '43f04e7299621f708801bf475c84d9f294826ff9', | 28 '8a2363f486e3a0dc562a68884832d06d28d38dcc', |
| 29 'buildtools': | 29 'buildtools': |
| 30 Var('chromium_git') + '/chromium/buildtools.git@' + | 30 Var('chromium_git') + '/chromium/buildtools.git@' + |
| 31 'c2f259809d5ede3275df5ea0842f0431990c4f98', | 31 'c2f259809d5ede3275df5ea0842f0431990c4f98', |
| 32 } | 32 } |
| 33 | 33 |
| 34 hooks = [ | 34 hooks = [ |
| 35 { | 35 { |
| 36 'name': 'clang_format_mac', | 36 'name': 'clang_format_mac', |
| 37 'pattern': '.', | 37 'pattern': '.', |
| 38 'action': [ | 38 'action': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 59 '--sha1_file', | 59 '--sha1_file', |
| 60 'buildtools/win/clang-format.exe.sha1', | 60 'buildtools/win/clang-format.exe.sha1', |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 { | 63 { |
| 64 'name': 'gyp', | 64 'name': 'gyp', |
| 65 'pattern': '\.gypi?$', | 65 'pattern': '\.gypi?$', |
| 66 'action': ['python', 'crashpad/build/gyp_crashpad.py'], | 66 'action': ['python', 'crashpad/build/gyp_crashpad.py'], |
| 67 }, | 67 }, |
| 68 ] | 68 ] |
| OLD | NEW |