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

Side by Side Diff: DEPS

Issue 869193005: Set up a network service bootstrap. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Address James's comments. Created 5 years, 11 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
« no previous file with comments | « .gitignore ('k') | services/network/BUILD.gn » ('j') | 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 'name': 'eu-strip', 310 'name': 'eu-strip',
311 'pattern': '.', 311 'pattern': '.',
312 'action': [ 'download_from_google_storage', 312 'action': [ 'download_from_google_storage',
313 '--no_resume', 313 '--no_resume',
314 '--platform=linux*', 314 '--platform=linux*',
315 '--no_auth', 315 '--no_auth',
316 '--bucket', 'chromium-eu-strip', 316 '--bucket', 'chromium-eu-strip',
317 '-s', 'src/build/linux/bin/eu-strip.sha1', 317 '-s', 'src/build/linux/bin/eu-strip.sha1',
318 ], 318 ],
319 }, 319 },
320 # Pull the prebuilt network service binaries according to
321 # services/network/VERSION.
322 {
323 'name': 'download_network_service',
324 'pattern': '',
325 'action': [ 'python', 'src/services/network/download_network_service.py' ],
326 },
320 { 327 {
321 # Ensure that we don't accidentally reference any .pyc files whose 328 # Ensure that we don't accidentally reference any .pyc files whose
322 # corresponding .py files have already been deleted. 329 # corresponding .py files have already been deleted.
323 'name': 'remove_stale_pyc_files', 330 'name': 'remove_stale_pyc_files',
324 'pattern': 'src/tools/.*\\.py', 331 'pattern': 'src/tools/.*\\.py',
325 'action': [ 332 'action': [
326 'python', 333 'python',
327 'src/tools/remove_stale_pyc_files.py', 334 'src/tools/remove_stale_pyc_files.py',
328 'src/tools', 335 'src/tools',
329 ], 336 ],
330 }, 337 },
331 ] 338 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | services/network/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698