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': '496a750d382e5ff646318d04f85e8bcd02a48ff9', | 5 'chromium_revision': '496a750d382e5ff646318d04f85e8bcd02a48ff9', |
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 Var('chromium_git') + '/external/gyp.git' + '@' + 'e7079f0e0e14108ab0dba5872
8ff219637458563', | 90 Var('chromium_git') + '/external/gyp.git' + '@' + 'e7079f0e0e14108ab0dba5872
8ff219637458563', |
91 'src/tools/swarming_client': | 91 'src/tools/swarming_client': |
92 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarmin
g_revision'), | 92 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarmin
g_revision'), |
93 | 93 |
94 # WebRTC-only dependencies (not present in Chromium). | 94 # WebRTC-only dependencies (not present in Chromium). |
95 'src/third_party/gflags': | 95 'src/third_party/gflags': |
96 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89
2576179b45861b53e04a112996a738309cf364', | 96 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89
2576179b45861b53e04a112996a738309cf364', |
97 'src/third_party/gflags/src': | 97 'src/third_party/gflags/src': |
98 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0
65c83beff83d50ae025a55a4bf94dfca', | 98 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0
65c83beff83d50ae025a55a4bf94dfca', |
99 'src/third_party/gtest-parallel': | 99 'src/third_party/gtest-parallel': |
100 Var('chromium_git') + '/external/webrtc/deps/third_party/gtest-parallel' + '
@' + '8768563f5c580f8fc416a13c35c8f23b8a602821', | 100 Var('chromium_git') + '/external/webrtc/deps/third_party/gtest-parallel' + '
@' + '1dad0e9f6d82ff994130b529d7d814b40eb32b0e', |
101 } | 101 } |
102 | 102 |
103 deps_os = { | 103 deps_os = { |
104 'android': { | 104 'android': { |
105 'src/third_party/android_tools': | 105 'src/third_party/android_tools': |
106 Var('chromium_git') + '/android_tools.git' + '@' + 'b43a6a289a7588b1769814
f04dd6c7d7176974cc', | 106 Var('chromium_git') + '/android_tools.git' + '@' + 'b43a6a289a7588b1769814
f04dd6c7d7176974cc', |
107 'src/third_party/ced/src': | 107 'src/third_party/ced/src': |
108 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' +
'@' + '368a9cc09ad868a3d28f0b5ad4a733f263c46409', | 108 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' +
'@' + '368a9cc09ad868a3d28f0b5ad4a733f263c46409', |
109 'src/third_party/icu': | 109 'src/third_party/icu': |
110 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '9cd2828740572ba6f6
94b9365236a8356fd06147', | 110 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '9cd2828740572ba6f6
94b9365236a8356fd06147', |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 }, | 527 }, |
528 ] | 528 ] |
529 | 529 |
530 recursedeps = [ | 530 recursedeps = [ |
531 # buildtools provides clang_format, libc++, and libc++abi. | 531 # buildtools provides clang_format, libc++, and libc++abi. |
532 'src/buildtools', | 532 'src/buildtools', |
533 # android_tools manages the NDK. | 533 # android_tools manages the NDK. |
534 'src/third_party/android_tools', | 534 'src/third_party/android_tools', |
535 ] | 535 ] |
536 | 536 |
OLD | NEW |