| 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 10 matching lines...) Expand all Loading... |
| 21 Var('chromium_git') + '/external/gmock@' + | 21 Var('chromium_git') + '/external/gmock@' + |
| 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 'ea8d8de53f9407d57cab716fef2a36b6bf1b78b2', |
| 32 'buildtools': | 32 'buildtools': |
| 33 Var('chromium_git') + '/chromium/buildtools.git@' + | 33 Var('chromium_git') + '/chromium/buildtools.git@' + |
| 34 'c2f259809d5ede3275df5ea0842f0431990c4f98', | 34 'c2f259809d5ede3275df5ea0842f0431990c4f98', |
| 35 } | 35 } |
| 36 | 36 |
| 37 hooks = [ | 37 hooks = [ |
| 38 { | 38 { |
| 39 'name': 'clang_format_mac', | 39 'name': 'clang_format_mac', |
| 40 'pattern': '.', | 40 'pattern': '.', |
| 41 'action': [ | 41 'action': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 62 '--sha1_file', | 62 '--sha1_file', |
| 63 'buildtools/win/clang-format.exe.sha1', | 63 'buildtools/win/clang-format.exe.sha1', |
| 64 ], | 64 ], |
| 65 }, | 65 }, |
| 66 { | 66 { |
| 67 'name': 'gyp', | 67 'name': 'gyp', |
| 68 'pattern': '\.gypi?$', | 68 'pattern': '\.gypi?$', |
| 69 'action': ['python', 'crashpad/build/gyp_crashpad.py'], | 69 'action': ['python', 'crashpad/build/gyp_crashpad.py'], |
| 70 }, | 70 }, |
| 71 ] | 71 ] |
| OLD | NEW |