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

Side by Side Diff: DEPS

Issue 1982423002: Get rid of LASTCHANGE.blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/BUILD.gn » ('j') | tools/export_tarball/export_tarball.py » ('J')
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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 'pattern': '.', 634 'pattern': '.',
635 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], 635 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'],
636 }, 636 },
637 { 637 {
638 # Update LASTCHANGE. 638 # Update LASTCHANGE.
639 'name': 'lastchange', 639 'name': 'lastchange',
640 'pattern': '.', 640 'pattern': '.',
641 'action': ['python', 'src/build/util/lastchange.py', 641 'action': ['python', 'src/build/util/lastchange.py',
642 '-o', 'src/build/util/LASTCHANGE'], 642 '-o', 'src/build/util/LASTCHANGE'],
643 }, 643 },
644 {
645 # Update LASTCHANGE.blink.
646 'name': 'lastchange_blink',
647 'pattern': '.',
648 'action': ['python', 'src/build/util/lastchange.py',
649 '--git-hash-only',
650 '-s', 'src/third_party/WebKit',
651 '-o', 'src/build/util/LASTCHANGE.blink'],
652 },
653 # Pull GN binaries. This needs to be before running GYP below. 644 # Pull GN binaries. This needs to be before running GYP below.
654 { 645 {
655 'name': 'gn_win', 646 'name': 'gn_win',
656 'pattern': '.', 647 'pattern': '.',
657 'action': [ 'download_from_google_storage', 648 'action': [ 'download_from_google_storage',
658 '--no_resume', 649 '--no_resume',
659 '--platform=win32', 650 '--platform=win32',
660 '--no_auth', 651 '--no_auth',
661 '--bucket', 'chromium-gn', 652 '--bucket', 'chromium-gn',
662 '-s', 'src/buildtools/win/gn.exe.sha1', 653 '-s', 'src/buildtools/win/gn.exe.sha1',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 'src/build/android/download_doclava.py', 843 'src/build/android/download_doclava.py',
853 ], 844 ],
854 }, 845 },
855 { 846 {
856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 847 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
857 'name': 'gyp', 848 'name': 'gyp',
858 'pattern': '.', 849 'pattern': '.',
859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], 850 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'],
860 }, 851 },
861 ] 852 ]
OLDNEW
« no previous file with comments | « no previous file | build/util/BUILD.gn » ('j') | tools/export_tarball/export_tarball.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698