| 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': '17c3a61f0cf073a39f4d538c442b5885ce2b06ac', | 5 'chromium_revision': '17c3a61f0cf073a39f4d538c442b5885ce2b06ac', |
| 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': 'e6fc9383ad7c38b3464141989b7bc498391e57e4', | 10 'swarming_revision': 'e6fc9383ad7c38b3464141989b7bc498391e57e4', |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'src/third_party/requests/src': | 111 'src/third_party/requests/src': |
| 112 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 112 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 113 'src/third_party/robolectric/robolectric': | 113 'src/third_party/robolectric/robolectric': |
| 114 Var('chromium_git') + '/external/robolectric.git' + '@' + '2a0b6ba221c14f3
371813a676ce06143353e448d', | 114 Var('chromium_git') + '/external/robolectric.git' + '@' + '2a0b6ba221c14f3
371813a676ce06143353e448d', |
| 115 'src/third_party/ub-uiautomator/lib': | 115 'src/third_party/ub-uiautomator/lib': |
| 116 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', | 116 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', |
| 117 | 117 |
| 118 # Gradle 3.5.0. Used for testing Android Studio project generation for WebRT
C. | 118 # Gradle 3.5.0. Used for testing Android Studio project generation for WebRT
C. |
| 119 'src/webrtc/examples/androidtests/third_party/gradle': | 119 'src/webrtc/examples/androidtests/third_party/gradle': |
| 120 Var('chromium_git') + '/external/github.com/gradle/gradle.git' + '@' + | 120 Var('chromium_git') + '/external/github.com/gradle/gradle.git' + '@' + |
| 121 'f0033cd6fdde56471115e18b15261b92f0ec0629', | 121 'b762622a185d59ce0cfc9cbc6ab5dd22469e18a6', |
| 122 }, | 122 }, |
| 123 'ios': { | 123 'ios': { |
| 124 'src/ios': | 124 'src/ios': |
| 125 Var('chromium_git') + '/chromium/src/ios' + '@' + 'c63cb8923d637ec2b80417d
b8c1973a83e4a647d', | 125 Var('chromium_git') + '/chromium/src/ios' + '@' + 'c63cb8923d637ec2b80417d
b8c1973a83e4a647d', |
| 126 }, | 126 }, |
| 127 'unix': { | 127 'unix': { |
| 128 'src/third_party/lss': | 128 'src/third_party/lss': |
| 129 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 129 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
| 130 }, | 130 }, |
| 131 'win': { | 131 'win': { |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 }, | 516 }, |
| 517 ] | 517 ] |
| 518 | 518 |
| 519 recursedeps = [ | 519 recursedeps = [ |
| 520 # buildtools provides clang_format, libc++, and libc++abi. | 520 # buildtools provides clang_format, libc++, and libc++abi. |
| 521 'src/buildtools', | 521 'src/buildtools', |
| 522 # android_tools manages the NDK. | 522 # android_tools manages the NDK. |
| 523 'src/third_party/android_tools', | 523 'src/third_party/android_tools', |
| 524 ] | 524 ] |
| 525 | 525 |
| OLD | NEW |