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

Side by Side Diff: DEPS

Issue 1361203002: Omit commit position for Blink lastchange / version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « no previous file | build/util/lastchange.py » ('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 used to manage the dependencies of the Chromium src repo. It is 1 # This file is used to manage the dependencies of the Chromium src repo. It is
2 # used by gclient to determine what version of each dependency to check out, and 2 # used by gclient to determine what version of each dependency to check out, and
3 # where. 3 # where.
4 # 4 #
5 # For more information, please refer to the official documentation: 5 # For more information, please refer to the official documentation:
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code
7 # 7 #
8 # When adding a new dependency, please update the top-level .gitignore file 8 # When adding a new dependency, please update the top-level .gitignore file
9 # to list the dependency's destination directory. 9 # to list the dependency's destination directory.
10 # 10 #
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 'name': 'lastchange', 585 'name': 'lastchange',
586 'pattern': '.', 586 'pattern': '.',
587 'action': ['python', 'src/build/util/lastchange.py', 587 'action': ['python', 'src/build/util/lastchange.py',
588 '-o', 'src/build/util/LASTCHANGE'], 588 '-o', 'src/build/util/LASTCHANGE'],
589 }, 589 },
590 { 590 {
591 # Update LASTCHANGE.blink. 591 # Update LASTCHANGE.blink.
592 'name': 'lastchange', 592 'name': 'lastchange',
593 'pattern': '.', 593 'pattern': '.',
594 'action': ['python', 'src/build/util/lastchange.py', 594 'action': ['python', 'src/build/util/lastchange.py',
595 '--git-hash-only',
595 '-s', 'src/third_party/WebKit', 596 '-s', 'src/third_party/WebKit',
596 '-o', 'src/build/util/LASTCHANGE.blink'], 597 '-o', 'src/build/util/LASTCHANGE.blink'],
597 }, 598 },
598 { 599 {
599 # Update CANARY_VERSION. 600 # Update CANARY_VERSION.
600 'name': 'ios_canary_version', 601 'name': 'ios_canary_version',
601 'pattern': '.', 602 'pattern': '.',
602 'action': ['python', 'src/ios/build/util/canary_version.py', 603 'action': ['python', 'src/ios/build/util/canary_version.py',
603 '-o', 'src/ios/build/util/CANARY_VERSION'], 604 '-o', 'src/ios/build/util/CANARY_VERSION'],
604 }, 605 },
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 # migration completes (let's say Sep 1 2014). 803 # migration completes (let's say Sep 1 2014).
803 'name': 'check_git_config', 804 'name': 'check_git_config',
804 'pattern': '.', 805 'pattern': '.',
805 'action': [ 806 'action': [
806 'python', 807 'python',
807 'src/tools/check_git_config.py', 808 'src/tools/check_git_config.py',
808 '--running-as-hook', 809 '--running-as-hook',
809 ], 810 ],
810 }, 811 },
811 ] 812 ]
OLDNEW
« no previous file with comments | « no previous file | build/util/lastchange.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698