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

Side by Side Diff: DEPS

Issue 2538493007: Revert of [build] Use MSVS 2015 by default. (Closed)
Patch Set: Created 4 years 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 | gni/isolate.gni » ('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 "chromium_url": "https://chromium.googlesource.com", 6 "chromium_url": "https://chromium.googlesource.com",
7 } 7 }
8 8
9 deps = { 9 deps = {
10 "v8/build": 10 "v8/build":
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 'pattern': '\\.sha1', 256 'pattern': '\\.sha1',
257 'action': [ 257 'action': [
258 'python', 258 'python',
259 'v8/third_party/instrumented_libraries/scripts/download_binaries.py', 259 'v8/third_party/instrumented_libraries/scripts/download_binaries.py',
260 ], 260 ],
261 }, 261 },
262 { 262 {
263 # Update the Windows toolchain if necessary. 263 # Update the Windows toolchain if necessary.
264 'name': 'win_toolchain', 264 'name': 'win_toolchain',
265 'pattern': '.', 265 'pattern': '.',
266 'action': ['python', 'v8/build/vs_toolchain.py', 'update'], 266 'action': ['python', 'v8/gypfiles/vs_toolchain.py', 'update'],
267 }, 267 },
268 # Pull binutils for linux, enabled debug fission for faster linking / 268 # Pull binutils for linux, enabled debug fission for faster linking /
269 # debugging when used with clang on Ubuntu Precise. 269 # debugging when used with clang on Ubuntu Precise.
270 # https://code.google.com/p/chromium/issues/detail?id=352046 270 # https://code.google.com/p/chromium/issues/detail?id=352046
271 { 271 {
272 'name': 'binutils', 272 'name': 'binutils',
273 'pattern': 'v8/third_party/binutils', 273 'pattern': 'v8/third_party/binutils',
274 'action': [ 274 'action': [
275 'python', 275 'python',
276 'v8/third_party/binutils/download.py', 276 'v8/third_party/binutils/download.py',
(...skipping 12 matching lines...) Expand all
289 'name': 'clang', 289 'name': 'clang',
290 'pattern': '.', 290 'pattern': '.',
291 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 291 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
292 }, 292 },
293 { 293 {
294 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 294 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
295 "pattern": ".", 295 "pattern": ".",
296 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], 296 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"],
297 }, 297 },
298 ] 298 ]
OLDNEW
« no previous file with comments | « no previous file | gni/isolate.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698