| 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': 'afcc086a9fc9d6ab25edb24bdf60ce8fca66c021', | 5 'chromium_revision': 'a3eecd718f060080ce740a75fc6fa57a2b9061ec', |
| 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', |
| 11 # Three lines of non-changing comments so that | 11 # Three lines of non-changing comments so that |
| 12 # the commit queue can handle CLs rolling openmax_dl | 12 # the commit queue can handle CLs rolling openmax_dl |
| 13 # and whatever else without interference from each other. | 13 # and whatever else without interference from each other. |
| 14 'openmax_dl_revision': '7acede9c039ea5d14cf326f44aad1245b9e674a7', | 14 'openmax_dl_revision': '7acede9c039ea5d14cf326f44aad1245b9e674a7', |
| 15 # Three lines of non-changing comments so that | 15 # Three lines of non-changing comments so that |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a
d4cf5ea53c69a8a8053780b04b850', | 112 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a
d4cf5ea53c69a8a8053780b04b850', |
| 113 'src/third_party/requests/src': | 113 'src/third_party/requests/src': |
| 114 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 114 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 115 'src/third_party/robolectric/robolectric': | 115 'src/third_party/robolectric/robolectric': |
| 116 Var('chromium_git') + '/external/robolectric.git' + '@' + '2a0b6ba221c14f3
371813a676ce06143353e448d', | 116 Var('chromium_git') + '/external/robolectric.git' + '@' + '2a0b6ba221c14f3
371813a676ce06143353e448d', |
| 117 'src/third_party/ub-uiautomator/lib': | 117 'src/third_party/ub-uiautomator/lib': |
| 118 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', | 118 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', |
| 119 }, | 119 }, |
| 120 'ios': { | 120 'ios': { |
| 121 'src/ios': | 121 'src/ios': |
| 122 Var('chromium_git') + '/chromium/src/ios' + '@' + '1e328f96f546ceb07aacf05
256fb7f0a8ece7bfd', | 122 Var('chromium_git') + '/chromium/src/ios' + '@' + '57aba0c1a2e59d4fa9b3c35
fbd0bca3684555478', |
| 123 }, | 123 }, |
| 124 'unix': { | 124 'unix': { |
| 125 'src/third_party/lss': | 125 'src/third_party/lss': |
| 126 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 126 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
| 127 }, | 127 }, |
| 128 'win': { | 128 'win': { |
| 129 # Dependencies used by libjpeg-turbo | 129 # Dependencies used by libjpeg-turbo |
| 130 'src/third_party/yasm/binaries': | 130 'src/third_party/yasm/binaries': |
| 131 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4
b0aa06da24ef8b123058bb61ee468881', | 131 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4
b0aa06da24ef8b123058bb61ee468881', |
| 132 | 132 |
| (...skipping 398 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 |