| 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': '524ee2777883eb122fce1e750ec6fe02cec3f82d', | 5 'chromium_revision': '524ee2777883eb122fce1e750ec6fe02cec3f82d', |
| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 Var('chromium_git') + '/external/gyp.git' + '@' + 'eb296f67da078ec01f5e3a9ea
9cdc6d26d680161', | 82 Var('chromium_git') + '/external/gyp.git' + '@' + 'eb296f67da078ec01f5e3a9ea
9cdc6d26d680161', |
| 83 'src/tools/swarming_client': | 83 'src/tools/swarming_client': |
| 84 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarmin
g_revision'), | 84 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarmin
g_revision'), |
| 85 | 85 |
| 86 # WebRTC-only dependencies (not present in Chromium). | 86 # WebRTC-only dependencies (not present in Chromium). |
| 87 'src/third_party/gflags': | 87 'src/third_party/gflags': |
| 88 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89
2576179b45861b53e04a112996a738309cf364', | 88 Var('chromium_git') + '/external/webrtc/deps/third_party/gflags' + '@' + '89
2576179b45861b53e04a112996a738309cf364', |
| 89 'src/third_party/gflags/src': | 89 'src/third_party/gflags/src': |
| 90 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0
65c83beff83d50ae025a55a4bf94dfca', | 90 Var('chromium_git') + '/external/github.com/gflags/gflags' + '@' + '03bebcb0
65c83beff83d50ae025a55a4bf94dfca', |
| 91 'src/third_party/gtest-parallel': | 91 'src/third_party/gtest-parallel': |
| 92 Var('chromium_git') + '/external/github.com/google/gtest-parallel' + '@' + '
c9bb1c9e8aa44238b59fc5a65fb01a7bee04257b', | 92 Var('chromium_git') + '/external/github.com/google/gtest-parallel' + '@' + '
c3e4b0a6d1660e12d3933aaccd747b26ef68d40f', |
| 93 } | 93 } |
| 94 | 94 |
| 95 deps_os = { | 95 deps_os = { |
| 96 'android': { | 96 'android': { |
| 97 'src/third_party/android_tools': | 97 'src/third_party/android_tools': |
| 98 Var('chromium_git') + '/android_tools.git' + '@' + 'cb6bc21107001e2f2eeee2
707b482b2b755baf51', | 98 Var('chromium_git') + '/android_tools.git' + '@' + 'cb6bc21107001e2f2eeee2
707b482b2b755baf51', |
| 99 'src/third_party/ced/src': | 99 'src/third_party/ced/src': |
| 100 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' +
'@' + 'e21eb6aed10b9f6e2727f136c52420033214d458', | 100 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' +
'@' + 'e21eb6aed10b9f6e2727f136c52420033214d458', |
| 101 'src/third_party/icu': | 101 'src/third_party/icu': |
| 102 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'b34251f8b762f8e211
2a89c587855ca4297fed96', | 102 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'b34251f8b762f8e211
2a89c587855ca4297fed96', |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 }, | 529 }, |
| 530 ] | 530 ] |
| 531 | 531 |
| 532 recursedeps = [ | 532 recursedeps = [ |
| 533 # buildtools provides clang_format, libc++, and libc++abi. | 533 # buildtools provides clang_format, libc++, and libc++abi. |
| 534 'src/buildtools', | 534 'src/buildtools', |
| 535 # android_tools manages the NDK. | 535 # android_tools manages the NDK. |
| 536 'src/third_party/android_tools', | 536 'src/third_party/android_tools', |
| 537 ] | 537 ] |
| 538 | 538 |
| OLD | NEW |