OLD | NEW |
1 # This file contains dependencies for WebRTC. | 1 # This file contains dependencies for WebRTC. |
2 | 2 |
3 vars = { | 3 vars = { |
4 'chromium_git': 'https://chromium.googlesource.com', | 4 'chromium_git': 'https://chromium.googlesource.com', |
5 'chromium_revision': '02ea6568c0b73b6c9873ea2f3aef44d77dc81a25', | 5 'chromium_revision': '02ea6568c0b73b6c9873ea2f3aef44d77dc81a25', |
6 'boringssl_git': 'https://boringssl.googlesource.com', | 6 'boringssl_git': 'https://boringssl.googlesource.com', |
7 # Three lines of non-changing comments so that | 7 # Three lines of non-changing comments so that |
8 # the commit queue can handle CLs rolling swarming_client | 8 # the commit queue can handle CLs rolling swarming_client |
9 # and whatever else without interference from each other. | 9 # and whatever else without interference from each other. |
10 'swarming_revision': '11e31afa5d330756ff87aa12064bb5d032896cb5', | 10 'swarming_revision': '11e31afa5d330756ff87aa12064bb5d032896cb5', |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 { | 158 { |
159 # This clobbers when necessary (based on get_landmines.py). It should be | 159 # This clobbers when necessary (based on get_landmines.py). It should be |
160 # an early hook but it will need to be run after syncing Chromium and | 160 # an early hook but it will need to be run after syncing Chromium and |
161 # setting up the links, so the script actually exists. | 161 # setting up the links, so the script actually exists. |
162 'name': 'landmines', | 162 'name': 'landmines', |
163 'pattern': '.', | 163 'pattern': '.', |
164 'action': [ | 164 'action': [ |
165 'python', | 165 'python', |
166 'src/build/landmines.py', | 166 'src/build/landmines.py', |
167 '--landmine-scripts', | 167 '--landmine-scripts', |
168 'src/tools-webrtc/get_landmines.py', | 168 'src/tools_webrtc/get_landmines.py', |
169 '--src-dir', | 169 '--src-dir', |
170 'src', | 170 'src', |
171 ], | 171 ], |
172 }, | 172 }, |
173 # Android dependencies. Many are downloaded using Google Storage these days. | 173 # Android dependencies. Many are downloaded using Google Storage these days. |
174 # They're copied from https://cs.chromium.org/chromium/src/DEPS for all | 174 # They're copied from https://cs.chromium.org/chromium/src/DEPS for all |
175 # such dependencies we share with Chromium. | 175 # such dependencies we share with Chromium. |
176 { | 176 { |
177 # This downloads SDK extras and puts them in the | 177 # This downloads SDK extras and puts them in the |
178 # third_party/android_tools/sdk/extras directory. | 178 # third_party/android_tools/sdk/extras directory. |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 }, | 529 }, |
530 ] | 530 ] |
531 | 531 |
532 recursedeps = [ | 532 recursedeps = [ |
533 # buildtools provides clang_format, libc++, and libc++abi. | 533 # buildtools provides clang_format, libc++, and libc++abi. |
534 'src/buildtools', | 534 'src/buildtools', |
535 # android_tools manages the NDK. | 535 # android_tools manages the NDK. |
536 'src/third_party/android_tools', | 536 'src/third_party/android_tools', |
537 ] | 537 ] |
538 | 538 |
OLD | NEW |