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

Side by Side Diff: DEPS

Issue 843913009: Reland Auto-generate v8 version based on tags. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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 | « BUILD.gn ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Note: The buildbots evaluate this file with CWD set to the parent 1 # Note: The buildbots evaluate this file with CWD set to the parent
2 # directory and assume that the root of the checkout is in ./v8/, so 2 # directory and assume that the root of the checkout is in ./v8/, so
3 # all paths in here must match this assumption. 3 # all paths in here must match this assumption.
4 4
5 vars = { 5 vars = {
6 "git_url": "https://chromium.googlesource.com", 6 "git_url": "https://chromium.googlesource.com",
7 } 7 }
8 8
9 deps = { 9 deps = {
10 "v8/build/gyp": 10 "v8/build/gyp":
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 ], 81 ],
82 }, 82 },
83 { 83 {
84 # Pull clang if needed or requested via GYP_DEFINES. 84 # Pull clang if needed or requested via GYP_DEFINES.
85 # Note: On Win, this should run after win_toolchain, as it may use it. 85 # Note: On Win, this should run after win_toolchain, as it may use it.
86 'name': 'clang', 86 'name': 'clang',
87 'pattern': '.', 87 'pattern': '.',
88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
89 }, 89 },
90 { 90 {
91 # Generate v8 version based on the last git tag.
92 "pattern": ".",
93 "action": ["python",
94 "v8/tools/push-to-trunk/generate_version.py",
95 "--hook"],
96 },
97 {
91 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 98 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
92 "pattern": ".", 99 "pattern": ".",
93 "action": ["python", "v8/build/gyp_v8"], 100 "action": ["python", "v8/build/gyp_v8"],
94 }, 101 },
95 ] 102 ]
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698