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

Side by Side Diff: bootstrap/deps.pyl

Issue 2213143002: Add infra_libs as a bootstrap dependency. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Removed the ugly import hack Created 4 years, 4 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 # See README.md, there is a section about this file. 1 # See README.md, there is a section about this file.
2 #vim: ft=python: 2 #vim: ft=python:
3 { 3 {
4 'wheel': { 4 'wheel': {
5 'version': '0.24.0', 5 'version': '0.24.0',
6 'build': '0', 6 'build': '0',
7 'gs': 'c02262299489646af253067e8136c060a93572e3.tar.gz', 7 'gs': 'c02262299489646af253067e8136c060a93572e3.tar.gz',
8 }, 8 },
9 9
10 'argcomplete': { 10 'argcomplete': {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'repo': 'external/github.com/jcgregorio/httplib2', 71 'repo': 'external/github.com/jcgregorio/httplib2',
72 'rev': '7d1b88a3cf34774242bf4c0578c09c0092bb05d8', 72 'rev': '7d1b88a3cf34774242bf4c0578c09c0092bb05d8',
73 }, 73 },
74 'idna': { 74 'idna': {
75 'version': '2.1', 75 'version': '2.1',
76 'build': '0', 76 'build': '0',
77 'repo': 'external/github.com/kjd/idna', 77 'repo': 'external/github.com/kjd/idna',
78 'rev': 'cb8ae9acf100c9faba02737ac82b31a0152d19e8', 78 'rev': 'cb8ae9acf100c9faba02737ac82b31a0152d19e8',
79 'implicit': True, # Required by cryptography 79 'implicit': True, # Required by cryptography
80 }, 80 },
81 'infra_libs': {
Sergiy Byelozyorov 2016/08/04 22:10:39 Since infra_libs now lives in a separate repo, it
82 'version': '1.1.0',
83 'build': '0',
84 'repo': 'infra/infra/packages/infra_libs',
85 'rev': 'c3824550799149df1cc078f45f560606b0f7b652',
86 },
81 'ipaddress': { 87 'ipaddress': {
82 'version': '1.0.16', 88 'version': '1.0.16',
83 'build': '0', 89 'build': '0',
84 'repo': 'external/github.com/phihag/ipaddress', 90 'repo': 'external/github.com/phihag/ipaddress',
85 'rev': '77c528007b90de88068df498726c574e8a86f497', 91 'rev': '77c528007b90de88068df498726c574e8a86f497',
86 'implicit': True, # Required by cryptography 92 'implicit': True, # Required by cryptography
87 }, 93 },
88 'Jinja2': { 94 'Jinja2': {
89 'version': '2.7.3dev_20141205', 95 'version': '2.7.3dev_20141205',
90 'build': '0', 96 'build': '0',
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 'rev': '6581ebfe7e1f95b6f2e193723a9e0e1f02337851', 243 'rev': '6581ebfe7e1f95b6f2e193723a9e0e1f02337851',
238 }, 244 },
239 'WebOb': { 245 'WebOb': {
240 'version': '1.4.1dev', 246 'version': '1.4.1dev',
241 'build': '0', 247 'build': '0',
242 'repo': 'external/github.com/Pylons/webob', 248 'repo': 'external/github.com/Pylons/webob',
243 'rev': 'ec67aba9d62d0e32dc5154c940a2214441bf0a9e', 249 'rev': 'ec67aba9d62d0e32dc5154c940a2214441bf0a9e',
244 # 'implicit': True, # Required by webtest 250 # 'implicit': True, # Required by webtest
245 }, 251 },
246 } 252 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698