| 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': '59592eaa98a1d864cb14bab0a953ef2dab0d2700', | 5 'chromium_revision': '59592eaa98a1d864cb14bab0a953ef2dab0d2700', |
| 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': 'ebc8dab6f8b8d79ec221c94de39a921145abd404', | 10 'swarming_revision': 'ebc8dab6f8b8d79ec221c94de39a921145abd404', |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 { | 162 { |
| 163 # This clobbers when necessary (based on get_landmines.py). It should be | 163 # This clobbers when necessary (based on get_landmines.py). It should be |
| 164 # an early hook but it will need to be run after syncing Chromium and | 164 # an early hook but it will need to be run after syncing Chromium and |
| 165 # setting up the links, so the script actually exists. | 165 # setting up the links, so the script actually exists. |
| 166 'name': 'landmines', | 166 'name': 'landmines', |
| 167 'pattern': '.', | 167 'pattern': '.', |
| 168 'action': [ | 168 'action': [ |
| 169 'python', | 169 'python', |
| 170 'src/build/landmines.py', | 170 'src/build/landmines.py', |
| 171 '--landmine-scripts', | 171 '--landmine-scripts', |
| 172 'src/webrtc/build/get_landmines.py', | 172 'src/tools-webrtc/get_landmines.py', |
| 173 '--src-dir', | 173 '--src-dir', |
| 174 'src', | 174 'src', |
| 175 ], | 175 ], |
| 176 }, | 176 }, |
| 177 # Android dependencies. Many are downloaded using Google Storage these days. | 177 # Android dependencies. Many are downloaded using Google Storage these days. |
| 178 # They're copied from https://cs.chromium.org/chromium/src/DEPS for all | 178 # They're copied from https://cs.chromium.org/chromium/src/DEPS for all |
| 179 # such dependencies we share with Chromium. | 179 # such dependencies we share with Chromium. |
| 180 { | 180 { |
| 181 # This downloads SDK extras and puts them in the | 181 # This downloads SDK extras and puts them in the |
| 182 # third_party/android_tools/sdk/extras directory. | 182 # third_party/android_tools/sdk/extras directory. |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 }, | 523 }, |
| 524 ] | 524 ] |
| 525 | 525 |
| 526 recursedeps = [ | 526 recursedeps = [ |
| 527 # buildtools provides clang_format, libc++, and libc++abi. | 527 # buildtools provides clang_format, libc++, and libc++abi. |
| 528 'src/buildtools', | 528 'src/buildtools', |
| 529 # android_tools manages the NDK. | 529 # android_tools manages the NDK. |
| 530 'src/third_party/android_tools', | 530 'src/third_party/android_tools', |
| 531 ] | 531 ] |
| 532 | 532 |
| OLD | NEW |