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': '581ff14023b243973f1f722d3ab83115a3f2e991', | 5 'chromium_revision': '581ff14023b243973f1f722d3ab83115a3f2e991', |
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 Var('chromium_git') + '/external/gyp.git' + '@' + 'e7079f0e0e14108ab0dba5872
8ff219637458563', | 84 Var('chromium_git') + '/external/gyp.git' + '@' + 'e7079f0e0e14108ab0dba5872
8ff219637458563', |
85 'src/tools/swarming_client': | 85 'src/tools/swarming_client': |
86 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarmin
g_revision'), | 86 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarmin
g_revision'), |
87 | 87 |
88 # WebRTC-only dependencies (not present in Chromium). | 88 # WebRTC-only dependencies (not present in Chromium). |
89 'src/third_party/gflags': | 89 'src/third_party/gflags': |
90 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89
2576179b45861b53e04a112996a738309cf364', | 90 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89
2576179b45861b53e04a112996a738309cf364', |
91 'src/third_party/gflags/src': | 91 'src/third_party/gflags/src': |
92 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0
65c83beff83d50ae025a55a4bf94dfca', | 92 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0
65c83beff83d50ae025a55a4bf94dfca', |
93 'src/third_party/gtest-parallel': | 93 'src/third_party/gtest-parallel': |
94 Var('chromium_git') + '/external/webrtc/deps/third_party/gtest-parallel' + '
@' + '1dad0e9f6d82ff994130b529d7d814b40eb32b0e', | 94 Var('chromium_git') + '/external/github.com/google/gtest-parallel' + '@' + '
f3c90adaadecab22e7f2591746b4d88747dd9a3e', |
95 } | 95 } |
96 | 96 |
97 deps_os = { | 97 deps_os = { |
98 'android': { | 98 'android': { |
99 'src/third_party/android_tools': | 99 'src/third_party/android_tools': |
100 Var('chromium_git') + '/android_tools.git' + '@' + 'b43a6a289a7588b1769814
f04dd6c7d7176974cc', | 100 Var('chromium_git') + '/android_tools.git' + '@' + 'b43a6a289a7588b1769814
f04dd6c7d7176974cc', |
101 'src/third_party/ced/src': | 101 'src/third_party/ced/src': |
102 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' +
'@' + 'e21eb6aed10b9f6e2727f136c52420033214d458', | 102 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' +
'@' + 'e21eb6aed10b9f6e2727f136c52420033214d458', |
103 'src/third_party/icu': | 103 'src/third_party/icu': |
104 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '450be73c9ee8ae29d4
3d4fdc82febb2a5f62bfb5', | 104 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '450be73c9ee8ae29d4
3d4fdc82febb2a5f62bfb5', |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 }, | 531 }, |
532 ] | 532 ] |
533 | 533 |
534 recursedeps = [ | 534 recursedeps = [ |
535 # buildtools provides clang_format, libc++, and libc++abi. | 535 # buildtools provides clang_format, libc++, and libc++abi. |
536 'src/buildtools', | 536 'src/buildtools', |
537 # android_tools manages the NDK. | 537 # android_tools manages the NDK. |
538 'src/third_party/android_tools', | 538 'src/third_party/android_tools', |
539 ] | 539 ] |
540 | 540 |
OLD | NEW |