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

Side by Side Diff: DEPS

Issue 714473002: Sync gyp on all platforms to fix the build error. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is automatically processed to create .DEPS.git which is the file 1 # This file is automatically processed to create .DEPS.git which is the file
2 # that gclient uses under git. 2 # that gclient uses under git.
3 # 3 #
4 # See http://code.google.com/p/chromium/wiki/UsingGit 4 # See http://code.google.com/p/chromium/wiki/UsingGit
5 # 5 #
6 # To test manually, run: 6 # To test manually, run:
7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir>
8 # where <gcliendir> is the absolute path to the directory containing the 8 # where <gcliendir> is the absolute path to the directory containing the
9 # .gclient file (the parent of 'src'). 9 # .gclient file (the parent of 'src').
10 # 10 #
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30 ff8d1fa1a89be39cec901f4a29c', 117 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30 ff8d1fa1a89be39cec901f4a29c',
118 118
119 'src/third_party/mesa/src': 119 'src/third_party/mesa/src':
120 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '9731cb962963bca8a05f 3d0f6ea40c3a781f0537', 120 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '9731cb962963bca8a05f 3d0f6ea40c3a781f0537',
121 121
122 'src/third_party/pdfium': 122 'src/third_party/pdfium':
123 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), 123 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'),
124 124
125 'src/third_party/boringssl/src': 125 'src/third_party/boringssl/src':
126 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re vision'), 126 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re vision'),
127
128 'src/tools/gyp':
129 Var('chromium_git') + '/external/gyp.git' + '@' + '487c0b6ae8b44932e45347211 bca0e8387718436', # from svn revision 1998
127 } 130 }
128 131
129 132
130 deps_os = { 133 deps_os = {
131 'unix': { 134 'unix': {
132 # Linux, really. 135 # Linux, really.
133 'src/third_party/lss': 136 'src/third_party/lss':
134 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va r('lss_revision'), 137 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va r('lss_revision'),
135 138
136 # Note that this is different from Android's freetype repo. 139 # Note that this is different from Android's freetype repo.
(...skipping 17 matching lines...) Expand all
154 'src/third_party/freetype': 157 'src/third_party/freetype':
155 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'a 2b9955b49034a51dfbc8bf9f4e9d312149cecac', 158 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'a 2b9955b49034a51dfbc8bf9f4e9d312149cecac',
156 }, 159 },
157 'win': { 160 'win': {
158 'src/third_party/nss': 161 'src/third_party/nss':
159 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision '), 162 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision '),
160 'src/third_party/bison': 163 'src/third_party/bison':
161 Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affd d5464ee2b224c2df649c6e26c3', 164 Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affd d5464ee2b224c2df649c6e26c3',
162 'src/third_party/gperf': 165 'src/third_party/gperf':
163 Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f944 9770443fb06da49b5a1e5d33c1', 166 Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f944 9770443fb06da49b5a1e5d33c1',
164 'src/tools/gyp':
165 Var('chromium_git') + '/external/gyp.git' + '@' + '487c0b6ae8b44932e4534 7211bca0e8387718436', # from svn revision 1998
166 } 167 }
167 } 168 }
168 169
169 170
170 include_rules = [ 171 include_rules = [
171 # Everybody can use some things. 172 # Everybody can use some things.
172 '+base', 173 '+base',
173 '+build', 174 '+build',
174 175
175 '+testing', 176 '+testing',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 # corresponding .py files have already been deleted. 305 # corresponding .py files have already been deleted.
305 'name': 'remove_stale_pyc_files', 306 'name': 'remove_stale_pyc_files',
306 'pattern': 'src/tools/.*\\.py', 307 'pattern': 'src/tools/.*\\.py',
307 'action': [ 308 'action': [
308 'python', 309 'python',
309 'src/tools/remove_stale_pyc_files.py', 310 'src/tools/remove_stale_pyc_files.py',
310 'src/tools', 311 'src/tools',
311 ], 312 ],
312 }, 313 },
313 ] 314 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698