| 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 20 matching lines...) Expand all Loading... |
| 31 # reason to do so. | 31 # reason to do so. |
| 32 'crashpad/third_party/llvm': | 32 'crashpad/third_party/llvm': |
| 33 Var('chromium_git') + '/external/llvm.org/llvm.git@HEAD', | 33 Var('chromium_git') + '/external/llvm.org/llvm.git@HEAD', |
| 34 'crashpad/third_party/llvm/tools/clang': | 34 'crashpad/third_party/llvm/tools/clang': |
| 35 Var('chromium_git') + '/external/llvm.org/clang.git@HEAD', | 35 Var('chromium_git') + '/external/llvm.org/clang.git@HEAD', |
| 36 'crashpad/third_party/llvm/tools/lldb': | 36 'crashpad/third_party/llvm/tools/lldb': |
| 37 Var('chromium_git') + '/external/llvm.org/lldb.git@HEAD', | 37 Var('chromium_git') + '/external/llvm.org/lldb.git@HEAD', |
| 38 | 38 |
| 39 'crashpad/third_party/mini_chromium/mini_chromium': | 39 'crashpad/third_party/mini_chromium/mini_chromium': |
| 40 Var('chromium_git') + '/chromium/mini_chromium@' + | 40 Var('chromium_git') + '/chromium/mini_chromium@' + |
| 41 '4f3cfc8e7c2b7d77f94f41a32c3ec84a6920f05d', | 41 'f65519e442d23498937251e680a3b113927613b0', |
| 42 } | 42 } |
| 43 | 43 |
| 44 hooks = [ | 44 hooks = [ |
| 45 { | 45 { |
| 46 'name': 'clang_format_mac', | 46 'name': 'clang_format_mac', |
| 47 'pattern': '.', | 47 'pattern': '.', |
| 48 'action': [ | 48 'action': [ |
| 49 'download_from_google_storage', | 49 'download_from_google_storage', |
| 50 '--platform=^darwin$', | 50 '--platform=^darwin$', |
| 51 '--no_resume', | 51 '--no_resume', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 { | 97 { |
| 98 'name': 'gyp', | 98 'name': 'gyp', |
| 99 'pattern': '\.gypi?$', | 99 'pattern': '\.gypi?$', |
| 100 'action': ['python', 'crashpad/build/gyp_crashpad.py'], | 100 'action': ['python', 'crashpad/build/gyp_crashpad.py'], |
| 101 }, | 101 }, |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 recursedeps = [ | 104 recursedeps = [ |
| 105 'buildtools', | 105 'buildtools', |
| 106 ] | 106 ] |
| OLD | NEW |