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

Side by Side Diff: gypfiles/landmine_utils.py

Issue 1848553003: [gn] Move build to gypfiles (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Preserve old state for the dance 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 | « gypfiles/isolate.gypi ('k') | gypfiles/landmines.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 # Copyright 2014 the V8 project authors. All rights reserved. 1 # Copyright 2014 the V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 import functools 6 import functools
7 import logging 7 import logging
8 import os 8 import os
9 import shlex 9 import shlex
10 import sys 10 import sys
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 elif platform() == 'ios': 114 elif platform() == 'ios':
115 return 'xcode' 115 return 'xcode'
116 elif IsWindows(): 116 elif IsWindows():
117 return 'msvs' 117 return 'msvs'
118 elif IsLinux(): 118 elif IsLinux():
119 return 'make' 119 return 'make'
120 elif IsMac(): 120 elif IsMac():
121 return 'xcode' 121 return 'xcode'
122 else: 122 else:
123 assert False, 'Don\'t know what builder we\'re using!' 123 assert False, 'Don\'t know what builder we\'re using!'
OLDNEW
« no previous file with comments | « gypfiles/isolate.gypi ('k') | gypfiles/landmines.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698