| 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': '5c22c2afacd399b830795330efff38f07f0c4bec', |
| 9 } | 9 } |
| 10 | 10 |
| 11 deps = { | 11 deps = { |
| 12 'src/third_party/gflags/src': | 12 'src/third_party/gflags/src': |
| 13 Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff8
3d50ae025a55a4bf94dfca', | 13 Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff8
3d50ae025a55a4bf94dfca', |
| 14 } | 14 } |
| 15 | 15 |
| 16 deps_os = { | 16 deps_os = { |
| 17 'win': { | 17 'win': { |
| 18 'src/third_party/winsdk_samples/src': | 18 'src/third_party/winsdk_samples/src': |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 }, | 402 }, |
| 403 ] | 403 ] |
| 404 | 404 |
| 405 recursedeps = [ | 405 recursedeps = [ |
| 406 # buildtools provides clang_format, libc++, and libc++abi. | 406 # buildtools provides clang_format, libc++, and libc++abi. |
| 407 'src/buildtools', | 407 'src/buildtools', |
| 408 # android_tools manages the NDK. | 408 # android_tools manages the NDK. |
| 409 'src/third_party/android_tools', | 409 'src/third_party/android_tools', |
| 410 ] | 410 ] |
| 411 | 411 |
| OLD | NEW |