| OLD | NEW |
| 1 # This file contains dependencies for WebRTC that are not shared with Chromium. | 1 # This file contains dependencies for WebRTC that are not shared with Chromium. |
| 2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a | 2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a |
| 3 # directory from the Chromium checkout, you should add it to setup_links.py | 3 # directory from the Chromium checkout, you should add it to setup_links.py |
| 4 # instead. | 4 # instead. |
| 5 | 5 |
| 6 vars = { | 6 vars = { |
| 7 'chromium_git': 'https://chromium.googlesource.com', | 7 'chromium_git': 'https://chromium.googlesource.com', |
| 8 'chromium_revision': '5e821a778b85878bafcc8128f64333fd518c79a5', | 8 'chromium_revision': '5e821a778b85878bafcc8128f64333fd518c79a5', |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 'src/third_party/binutils/download.py', | 245 'src/third_party/binutils/download.py', |
| 246 ], | 246 ], |
| 247 }, | 247 }, |
| 248 { | 248 { |
| 249 # Pull clang if needed or requested via GYP_DEFINES. | 249 # Pull clang if needed or requested via GYP_DEFINES. |
| 250 # Note: On Win, this should run after win_toolchain, as it may use it. | 250 # Note: On Win, this should run after win_toolchain, as it may use it. |
| 251 'name': 'clang', | 251 'name': 'clang', |
| 252 'pattern': '.', | 252 'pattern': '.', |
| 253 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], | 253 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
| 254 }, | 254 }, |
| 255 { |
| 256 # Update LASTCHANGE. |
| 257 'name': 'lastchange', |
| 258 'pattern': '.', |
| 259 'action': ['python', 'src/build/util/lastchange.py', |
| 260 '-o', 'src/build/util/LASTCHANGE'], |
| 261 }, |
| 255 # Pull GN binaries. | 262 # Pull GN binaries. |
| 256 { | 263 { |
| 257 'name': 'gn_win', | 264 'name': 'gn_win', |
| 258 'pattern': '.', | 265 'pattern': '.', |
| 259 'action': [ 'download_from_google_storage', | 266 'action': [ 'download_from_google_storage', |
| 260 '--no_resume', | 267 '--no_resume', |
| 261 '--platform=win32', | 268 '--platform=win32', |
| 262 '--no_auth', | 269 '--no_auth', |
| 263 '--bucket', 'chromium-gn', | 270 '--bucket', 'chromium-gn', |
| 264 '-s', 'src/buildtools/win/gn.exe.sha1', | 271 '-s', 'src/buildtools/win/gn.exe.sha1', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 }, | 402 }, |
| 396 ] | 403 ] |
| 397 | 404 |
| 398 recursedeps = [ | 405 recursedeps = [ |
| 399 # buildtools provides clang_format, libc++, and libc++abi. | 406 # buildtools provides clang_format, libc++, and libc++abi. |
| 400 'src/buildtools', | 407 'src/buildtools', |
| 401 # android_tools manages the NDK. | 408 # android_tools manages the NDK. |
| 402 'src/third_party/android_tools', | 409 'src/third_party/android_tools', |
| 403 ] | 410 ] |
| 404 | 411 |
| OLD | NEW |