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

Side by Side Diff: DEPS

Issue 1641413002: Makes GetBuildTime behave identically on all build types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hook based approach Created 4 years, 10 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
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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 '-s', 'src/third_party/WebKit', 621 '-s', 'src/third_party/WebKit',
622 '-o', 'src/build/util/LASTCHANGE.blink'], 622 '-o', 'src/build/util/LASTCHANGE.blink'],
623 }, 623 },
624 { 624 {
625 # Update CANARY_VERSION. 625 # Update CANARY_VERSION.
626 'name': 'ios_canary_version', 626 'name': 'ios_canary_version',
627 'pattern': '.', 627 'pattern': '.',
628 'action': ['python', 'src/ios/build/util/canary_version.py', 628 'action': ['python', 'src/ios/build/util/canary_version.py',
629 '-o', 'src/ios/build/util/CANARY_VERSION'], 629 '-o', 'src/ios/build/util/CANARY_VERSION'],
630 }, 630 },
631 {
632 # Update BUILD_DATE
633 'name': 'update_build_date',
634 'pattern': '.',
635 'action': ['python', 'src/build/write_build_date_header.py',
636 'src/base/generated_build_date.h'],
M-A Ruel 2016/02/06 02:24:37 The path should be inside PRODUCT_DIR.
637 },
631 # Pull GN binaries. This needs to be before running GYP below. 638 # Pull GN binaries. This needs to be before running GYP below.
632 { 639 {
633 'name': 'gn_win', 640 'name': 'gn_win',
634 'pattern': '.', 641 'pattern': '.',
635 'action': [ 'download_from_google_storage', 642 'action': [ 'download_from_google_storage',
636 '--no_resume', 643 '--no_resume',
637 '--platform=win32', 644 '--platform=win32',
638 '--no_auth', 645 '--no_auth',
639 '--bucket', 'chromium-gn', 646 '--bucket', 'chromium-gn',
640 '-s', 'src/buildtools/win/gn.exe.sha1', 647 '-s', 'src/buildtools/win/gn.exe.sha1',
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 'src/tools', 836 'src/tools',
830 ], 837 ],
831 }, 838 },
832 { 839 {
833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 840 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
834 'name': 'gyp', 841 'name': 'gyp',
835 'pattern': '.', 842 'pattern': '.',
836 'action': ['python', 'src/build/gyp_chromium'], 843 'action': ['python', 'src/build/gyp_chromium'],
837 }, 844 },
838 ] 845 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698