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 21 matching lines...) Expand all Loading... |
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 'f65519e442d23498937251e680a3b113927613b0', | 41 'f65519e442d23498937251e680a3b113927613b0', |
42 'crashpad/third_party/zlib/zlib': | |
43 Var('chromium_git') + '/chromium/src/third_party/zlib@' + | |
44 '13dc246a58e4b72104d35f9b1809af95221ebda7', | |
45 } | 42 } |
46 | 43 |
47 hooks = [ | 44 hooks = [ |
48 { | 45 { |
49 'name': 'clang_format_mac', | 46 'name': 'clang_format_mac', |
50 'pattern': '.', | 47 'pattern': '.', |
51 'action': [ | 48 'action': [ |
52 'download_from_google_storage', | 49 'download_from_google_storage', |
53 '--platform=^darwin$', | 50 '--platform=^darwin$', |
54 '--no_resume', | 51 '--no_resume', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 { | 97 { |
101 'name': 'gyp', | 98 'name': 'gyp', |
102 'pattern': '\.gypi?$', | 99 'pattern': '\.gypi?$', |
103 'action': ['python', 'crashpad/build/gyp_crashpad.py'], | 100 'action': ['python', 'crashpad/build/gyp_crashpad.py'], |
104 }, | 101 }, |
105 ] | 102 ] |
106 | 103 |
107 recursedeps = [ | 104 recursedeps = [ |
108 'buildtools', | 105 'buildtools', |
109 ] | 106 ] |
OLD | NEW |