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, |
(...skipping 11 matching lines...) Expand all Loading... |
22 '29763965ab52f24565299976b936d1265cb6a271', # svn r501 | 22 '29763965ab52f24565299976b936d1265cb6a271', # svn r501 |
23 'crashpad/third_party/gtest/gtest': | 23 'crashpad/third_party/gtest/gtest': |
24 Var('chromium_git') + '/external/gtest@' + | 24 Var('chromium_git') + '/external/gtest@' + |
25 '8245545b6dc9c4703e6496d1efd19e975ad2b038', # svn r700 | 25 '8245545b6dc9c4703e6496d1efd19e975ad2b038', # svn r700 |
26 'crashpad/third_party/gyp/gyp': | 26 'crashpad/third_party/gyp/gyp': |
27 Var('chromium_git') + '/external/gyp@' + | 27 Var('chromium_git') + '/external/gyp@' + |
28 '01528c7244837168a1c80f06ff60fa5a9793c824', | 28 '01528c7244837168a1c80f06ff60fa5a9793c824', |
29 'crashpad/third_party/mini_chromium/mini_chromium': | 29 'crashpad/third_party/mini_chromium/mini_chromium': |
30 Var('chromium_git') + '/chromium/mini_chromium@' + | 30 Var('chromium_git') + '/chromium/mini_chromium@' + |
31 '8e12d3df2f1c0fcd84d649f4619323558db63a85', | 31 '8e12d3df2f1c0fcd84d649f4619323558db63a85', |
| 32 'buildtools': |
| 33 Var('chromium_git') + '/chromium/buildtools.git@' + |
| 34 'c2f259809d5ede3275df5ea0842f0431990c4f98', |
32 } | 35 } |
33 | 36 |
34 hooks = [ | 37 hooks = [ |
35 { | 38 { |
| 39 'name': 'clang_format_mac', |
| 40 'pattern': '.', |
| 41 'action': [ |
| 42 'download_from_google_storage', |
| 43 '--platform=^darwin$', |
| 44 '--no_resume', |
| 45 '--no_auth', |
| 46 '--bucket=chromium-clang-format', |
| 47 '--output=buildtools/mac/clang-format', |
| 48 '--sha1_file', |
| 49 'buildtools/mac/clang-format.sha1', |
| 50 ], |
| 51 }, |
| 52 { |
| 53 'name': 'clang_format_win', |
| 54 'pattern': '.', |
| 55 'action': [ |
| 56 'download_from_google_storage', |
| 57 '--platform=^win32$', |
| 58 '--no_resume', |
| 59 '--no_auth', |
| 60 '--bucket=chromium-clang-format', |
| 61 '--output=buildtools/win/clang-format.exe', |
| 62 '--sha1_file', |
| 63 'buildtools/win/clang-format.exe.sha1', |
| 64 ], |
| 65 }, |
| 66 { |
36 'name': 'gyp', | 67 'name': 'gyp', |
37 'pattern': '\.gypi?$', | 68 'pattern': '\.gypi?$', |
38 'action': ['python', 'crashpad/build/gyp_crashpad.py'], | 69 'action': ['python', 'crashpad/build/gyp_crashpad.py'], |
39 }, | 70 }, |
40 ] | 71 ] |
OLD | NEW |