| 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': '05381409884cc4b9b1e15eeeff4dc624088b9ab3', | 5 'chromium_revision': '05381409884cc4b9b1e15eeeff4dc624088b9ab3', |
| 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': '5c4eed8883548ba78c886ef26986b81b1be723a4', | 10 'swarming_revision': '5c4eed8883548ba78c886ef26986b81b1be723a4', |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'src/third_party/ub-uiautomator/lib': | 110 'src/third_party/ub-uiautomator/lib': |
| 111 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', | 111 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', |
| 112 # Gradle 3.5.0. Used for testing Android Studio project generation for WebRT
C. | 112 # Gradle 3.5.0. Used for testing Android Studio project generation for WebRT
C. |
| 113 'src/webrtc/examples/androidtests/third_party/gradle': | 113 'src/webrtc/examples/androidtests/third_party/gradle': |
| 114 Var('chromium_git') + '/external/github.com/gradle/gradle.git' + '@' + | 114 Var('chromium_git') + '/external/github.com/gradle/gradle.git' + '@' + |
| 115 'b762622a185d59ce0cfc9cbc6ab5dd22469e18a6', | 115 'b762622a185d59ce0cfc9cbc6ab5dd22469e18a6', |
| 116 }, | 116 }, |
| 117 'ios': { | 117 'ios': { |
| 118 'src/ios': | 118 'src/ios': |
| 119 Var('chromium_git') + '/chromium/src/ios' + '@' + '0e24ce236e337b37aca6bb2
a46dfabdabfef59ef', | 119 Var('chromium_git') + '/chromium/src/ios' + '@' + '0e24ce236e337b37aca6bb2
a46dfabdabfef59ef', |
| 120 'src/third_party/ced/src': |
| 121 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' +
'@' + '910cca22d881b02cbc8950fa02ccbcdcfb782456', |
| 122 'src/third_party/icu': |
| 123 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'ae18d60831126f902d
778541495194380ff77fd8', |
| 120 }, | 124 }, |
| 121 'unix': { | 125 'unix': { |
| 122 'src/third_party/lss': | 126 'src/third_party/lss': |
| 123 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 127 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
| 124 }, | 128 }, |
| 125 'win': { | 129 'win': { |
| 126 # Dependencies used by libjpeg-turbo | 130 # Dependencies used by libjpeg-turbo |
| 127 'src/third_party/yasm/binaries': | 131 'src/third_party/yasm/binaries': |
| 128 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4
b0aa06da24ef8b123058bb61ee468881', | 132 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4
b0aa06da24ef8b123058bb61ee468881', |
| 129 # WebRTC-only dependency (not present in Chromium). | 133 # WebRTC-only dependency (not present in Chromium). |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 '--bucket', 'chromium-webrtc-resources', | 520 '--bucket', 'chromium-webrtc-resources', |
| 517 'src/resources'], | 521 'src/resources'], |
| 518 }, | 522 }, |
| 519 ] | 523 ] |
| 520 recursedeps = [ | 524 recursedeps = [ |
| 521 # buildtools provides clang_format, libc++, and libc++abi. | 525 # buildtools provides clang_format, libc++, and libc++abi. |
| 522 'src/buildtools', | 526 'src/buildtools', |
| 523 # android_tools manages the NDK. | 527 # android_tools manages the NDK. |
| 524 'src/third_party/android_tools', | 528 'src/third_party/android_tools', |
| 525 ] | 529 ] |
| OLD | NEW |