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

Side by Side Diff: DEPS

Issue 31083008: Pull gn binary (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « .gitignore ('k') | tools/gn/bin/README.txt » ('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
2 # that gclient uses under git.
3 #
4 # See http://code.google.com/p/chromium/wiki/UsingGit
5 #
6 # To test manually, run:
7 # python tools/deps2git/deps2git.py -o .DEPS.git
8 # gclient runhooks
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by
10 # a bot when you modify this one.
11 #
1 # When adding a new dependency, please update the top-level .gitignore file 12 # When adding a new dependency, please update the top-level .gitignore file
2 # to list the dependency's destination directory. 13 # to list the dependency's destination directory.
3 14
4 vars = { 15 vars = {
5 # Use this googlecode_url variable only if there is an internal mirror for it. 16 # Use this googlecode_url variable only if there is an internal mirror for it.
6 # If you do not know, use the full path while defining your new deps entry. 17 # If you do not know, use the full path while defining your new deps entry.
7 "googlecode_url": "http://%s.googlecode.com/svn", 18 "googlecode_url": "http://%s.googlecode.com/svn",
8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", 19 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code",
9 "webkit_trunk": "http://src.chromium.org/blink/trunk", 20 "webkit_trunk": "http://src.chromium.org/blink/trunk",
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 21 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 }, 610 },
600 { 611 {
601 # Update LASTCHANGE.blink. This is also run by export_tarball.py in 612 # Update LASTCHANGE.blink. This is also run by export_tarball.py in
602 # src/tools/export_tarball - please keep them in sync. 613 # src/tools/export_tarball - please keep them in sync.
603 "name": "lastchange", 614 "name": "lastchange",
604 "pattern": ".", 615 "pattern": ".",
605 "action": ["python", "src/build/util/lastchange.py", 616 "action": ["python", "src/build/util/lastchange.py",
606 "-s", "src/third_party/WebKit", 617 "-s", "src/third_party/WebKit",
607 "-o", "src/build/util/LASTCHANGE.blink"], 618 "-o", "src/build/util/LASTCHANGE.blink"],
608 }, 619 },
620 # Pull GN binaries. This needs to be before running GYP below.
621 {
622 "name": "gn_win",
623 "pattern": "\\.sha1$",
624 "action": [ "download_from_google_storage",
625 "--platform=win32",
626 "--directory",
627 "--bucket", "chromium-gn",
628 "src/tools/gn/bin/win",
629 ],
630 },
631 {
632 "name": "gn_linux",
633 "pattern": "\\.sha1$",
634 "action": [ "download_from_google_storage",
635 "--platform=\"linux*\"",
shadi 2013/11/01 18:49:40 Recent gclient syncs show: ________ running 'dow
636 "--directory",
637 "--bucket", "chromium-gn",
638 "src/tools/gn/bin/linux",
639 ],
640 },
609 { 641 {
610 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 642 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
611 "name": "gyp", 643 "name": "gyp",
612 "pattern": ".", 644 "pattern": ".",
613 "action": ["python", "src/build/gyp_chromium"], 645 "action": ["python", "src/build/gyp_chromium"],
614 }, 646 },
615 { 647 {
616 # Check for landmines (reasons to clobber the build). 648 # Check for landmines (reasons to clobber the build).
617 "name": "landmines", 649 "name": "landmines",
618 "pattern": ".", 650 "pattern": ".",
619 "action": ["python", "src/build/landmines.py"], 651 "action": ["python", "src/build/landmines.py"],
620 }, 652 },
621 ] 653 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | tools/gn/bin/README.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698