| 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': 'fab77db556349d2f3c5cb893d5fba4f5f851799a', | 8 'chromium_revision': 'fab77db556349d2f3c5cb893d5fba4f5f851799a', |
| 9 } | 9 } |
| 10 | 10 |
| 11 deps = { | 11 deps = { |
| 12 'src/third_party/gflags': |
| 13 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89
2576179b45861b53e04a112996a738309cf364', |
| 12 'src/third_party/gflags/src': | 14 'src/third_party/gflags/src': |
| 13 Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff8
3d50ae025a55a4bf94dfca', | 15 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0
65c83beff83d50ae025a55a4bf94dfca', |
| 16 'src/third_party/gtest-parallel': |
| 17 Var('chromium_git') + '/external/webrtc/deps/third_party/gtest-parallel' + '
@' + '8768563f5c580f8fc416a13c35c8f23b8a602821', |
| 14 } | 18 } |
| 15 | 19 |
| 16 deps_os = { | 20 deps_os = { |
| 17 'win': { | 21 'win': { |
| 18 'src/third_party/winsdk_samples/src': | 22 'src/third_party/winsdk_samples': |
| 19 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7
1@e71b549167a665d7424d6f1dadfbff4b4aad1589', | 23 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v71
' + '@' + '6e4f93cc0c2f597547449cbaa80a6af629215a63', |
| 20 }, | 24 }, |
| 21 } | 25 } |
| 22 | 26 |
| 23 hooks = [ | 27 hooks = [ |
| 24 { | 28 { |
| 25 # Check for legacy named top-level dir (named 'trunk'). | 29 # Check for legacy named top-level dir (named 'trunk'). |
| 26 'name': 'check_root_dir_name', | 30 'name': 'check_root_dir_name', |
| 27 'pattern': '.', | 31 'pattern': '.', |
| 28 'action': ['python','-c', | 32 'action': ['python','-c', |
| 29 ('import os,sys;' | 33 ('import os,sys;' |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 }, | 406 }, |
| 403 ] | 407 ] |
| 404 | 408 |
| 405 recursedeps = [ | 409 recursedeps = [ |
| 406 # buildtools provides clang_format, libc++, and libc++abi. | 410 # buildtools provides clang_format, libc++, and libc++abi. |
| 407 'src/buildtools', | 411 'src/buildtools', |
| 408 # android_tools manages the NDK. | 412 # android_tools manages the NDK. |
| 409 'src/third_party/android_tools', | 413 'src/third_party/android_tools', |
| 410 ] | 414 ] |
| 411 | 415 |
| OLD | NEW |