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

Side by Side Diff: DEPS

Issue 1063233004: Teach dart_package to understand the packages/ subdirectory (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase Created 5 years, 8 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 | « BUILD.gn ('k') | mojo/dart/apptest/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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 # Pull the prebuilt network service binaries according to 298 # Pull the prebuilt network service binaries according to
299 # mojo/public/tools/NETWORK_SERVICE_VERSION. 299 # mojo/public/tools/NETWORK_SERVICE_VERSION.
300 { 300 {
301 'name': 'download_network_service', 301 'name': 'download_network_service',
302 'pattern': '', 302 'pattern': '',
303 'action': [ 'python', 303 'action': [ 'python',
304 'src/mojo/public/tools/download_network_service.py', 304 'src/mojo/public/tools/download_network_service.py',
305 '--tools-directory', '../../../tools', 305 '--tools-directory', '../../../tools',
306 ], 306 ],
307 }, 307 },
308 # Run "pub get" on any directories with checked-in pubspec.yaml files
309 # (excluding sky/, whose pubspec.yaml files are not intended for supporting
310 # building in-place in the repo).
311 {
312 'name': 'run_dart_pub_get',
313 'pattern': '',
314 'action': [ 'python',
315 'src/mojo/public/tools/git/dart_pub_get.py',
316 '--repository-root', '../../../..',
317 '--dart-sdk-directory',
318 '../../../../third_party/dart-sdk/dart-sdk',
319 '--dirs-to-ignore', 'sky/',
320 ],
321 },
308 { 322 {
309 # Ensure that we don't accidentally reference any .pyc files whose 323 # Ensure that we don't accidentally reference any .pyc files whose
310 # corresponding .py files have already been deleted. 324 # corresponding .py files have already been deleted.
311 'name': 'remove_stale_pyc_files', 325 'name': 'remove_stale_pyc_files',
312 'pattern': 'src/tools/.*\\.py', 326 'pattern': 'src/tools/.*\\.py',
313 'action': [ 327 'action': [
314 'python', 328 'python',
315 'src/tools/remove_stale_pyc_files.py', 329 'src/tools/remove_stale_pyc_files.py',
316 'src/tools', 330 'src/tools',
317 ], 331 ],
318 }, 332 },
319 { 333 {
320 # This downloads binaries for Native Client's newlib toolchain. 334 # This downloads binaries for Native Client's newlib toolchain.
321 # Done in lieu of building the toolchain from scratch as it can take 335 # Done in lieu of building the toolchain from scratch as it can take
322 # anywhere from 30 minutes to 4 hours depending on platform to build. 336 # anywhere from 30 minutes to 4 hours depending on platform to build.
323 'name': 'nacltools', 337 'name': 'nacltools',
324 'pattern': '.', 338 'pattern': '.',
325 'action': [ 339 'action': [
326 'python', 'src/build/download_nacl_toolchains.py', 340 'python', 'src/build/download_nacl_toolchains.py',
327 '--packages', 'pnacl_newlib', 341 '--packages', 'pnacl_newlib',
328 'sync', '--extract', 342 'sync', '--extract',
329 ], 343 ],
330 } 344 }
331 ] 345 ]
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | mojo/dart/apptest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698