Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: DEPS

Issue 2858043006: Test for Gradle project generation. (Closed)
Patch Set: Import gradle in DEPS. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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': '12dd72e2ea6a81907434ec2192ffc25e85de4db9', 5 'chromium_revision': '12dd72e2ea6a81907434ec2192ffc25e85de4db9',
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'src/third_party/lss': 107 'src/third_party/lss':
108 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi on'), 108 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi on'),
109 'src/third_party/mockito/src': 109 'src/third_party/mockito/src':
110 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a d4cf5ea53c69a8a8053780b04b850', 110 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a d4cf5ea53c69a8a8053780b04b850',
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
118 # Gradle 3.5.0. Used for testing Android Studio project generation for WebRT C.
119 'src/webrtc/examples/androidtests/third_party/gradle':
120 Var('chromium_git') + '/external/github.com/gradle/gradle.git' + '@' +
121 'b762622a185d59ce0cfc9cbc6ab5dd22469e18a6',
117 }, 122 },
118 'ios': { 123 'ios': {
119 'src/ios': 124 'src/ios':
120 Var('chromium_git') + '/chromium/src/ios' + '@' + '00e08288645a05e28fde4b2 2deae4c2d0e85c0c6', 125 Var('chromium_git') + '/chromium/src/ios' + '@' + '00e08288645a05e28fde4b2 2deae4c2d0e85c0c6',
121 }, 126 },
122 'unix': { 127 'unix': {
123 'src/third_party/lss': 128 'src/third_party/lss':
124 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi on'), 129 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi on'),
125 }, 130 },
126 'win': { 131 'win': {
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 }, 534 },
530 ] 535 ]
531 536
532 recursedeps = [ 537 recursedeps = [
533 # buildtools provides clang_format, libc++, and libc++abi. 538 # buildtools provides clang_format, libc++, and libc++abi.
534 'src/buildtools', 539 'src/buildtools',
535 # android_tools manages the NDK. 540 # android_tools manages the NDK.
536 'src/third_party/android_tools', 541 'src/third_party/android_tools',
537 ] 542 ]
538 543
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698