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

Side by Side Diff: DEPS

Issue 65083002: Remove extra quoting from the Linux GN platform filter. (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 | « 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 7 # python tools/deps2git/deps2git.py -o .DEPS.git
8 # gclient runhooks 8 # gclient runhooks
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by
10 # a bot when you modify this one. 10 # a bot when you modify this one.
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 "--platform=win32", 626 "--platform=win32",
627 "--directory", 627 "--directory",
628 "--bucket", "chromium-gn", 628 "--bucket", "chromium-gn",
629 "src/tools/gn/bin/win", 629 "src/tools/gn/bin/win",
630 ], 630 ],
631 }, 631 },
632 { 632 {
633 "name": "gn_linux", 633 "name": "gn_linux",
634 "pattern": "\\.sha1$", 634 "pattern": "\\.sha1$",
635 "action": [ "download_from_google_storage", 635 "action": [ "download_from_google_storage",
636 "--platform=\"linux*\"", 636 "--platform=linux*",
637 "--directory", 637 "--directory",
638 "--bucket", "chromium-gn", 638 "--bucket", "chromium-gn",
639 "src/tools/gn/bin/linux", 639 "src/tools/gn/bin/linux",
640 ], 640 ],
641 }, 641 },
642 { 642 {
643 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 643 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
644 "name": "gyp", 644 "name": "gyp",
645 "pattern": ".", 645 "pattern": ".",
646 "action": ["python", "src/build/gyp_chromium"], 646 "action": ["python", "src/build/gyp_chromium"],
647 }, 647 },
648 { 648 {
649 # Check for landmines (reasons to clobber the build). 649 # Check for landmines (reasons to clobber the build).
650 "name": "landmines", 650 "name": "landmines",
651 "pattern": ".", 651 "pattern": ".",
652 "action": ["python", "src/build/landmines.py"], 652 "action": ["python", "src/build/landmines.py"],
653 }, 653 },
654 ] 654 ]
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