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

Side by Side Diff: build/gyp_chromium

Issue 10692086: Change the gyp_chromium to build chromium in a symbolic link (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Refine it Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # This script is wrapper for Chromium that adds some support for how GYP 7 # This script is wrapper for Chromium that adds some support for how GYP
8 # is invoked by Chromium beyond what can be done in the gclient hooks. 8 # is invoked by Chromium beyond what can be done in the gclient hooks.
9 9
10 import glob 10 import glob
11 import os 11 import os
12 import shlex 12 import shlex
13 import subprocess 13 import subprocess
14 import sys 14 import sys
15 15
16 script_dir = os.path.dirname(__file__) 16 script_dir = os.path.dirname(os.path.realpath(__file__))
17 chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir)) 17 chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir))
18 18
19 sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib')) 19 sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib'))
20 import gyp 20 import gyp
21 21
22 # Add paths so that pymod_do_main(...) can import files. 22 # Add paths so that pymod_do_main(...) can import files.
23 sys.path.insert(1, os.path.join(chrome_src, 'tools', 'grit')) 23 sys.path.insert(1, os.path.join(chrome_src, 'tools', 'grit'))
24 sys.path.insert(1, os.path.join(chrome_src, 'chrome', 'tools', 'build')) 24 sys.path.insert(1, os.path.join(chrome_src, 'chrome', 'tools', 'build'))
25 sys.path.insert(1, os.path.join(chrome_src, 'native_client', 'build')) 25 sys.path.insert(1, os.path.join(chrome_src, 'native_client', 'build'))
26 26
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 # to enfore syntax checking. 164 # to enfore syntax checking.
165 syntax_check = os.environ.get('CHROMIUM_GYP_SYNTAX_CHECK') 165 syntax_check = os.environ.get('CHROMIUM_GYP_SYNTAX_CHECK')
166 if syntax_check and int(syntax_check): 166 if syntax_check and int(syntax_check):
167 args.append('--check') 167 args.append('--check')
168 168
169 print 'Updating projects from gyp files...' 169 print 'Updating projects from gyp files...'
170 sys.stdout.flush() 170 sys.stdout.flush()
171 171
172 # Off we go... 172 # Off we go...
173 sys.exit(gyp.main(args)) 173 sys.exit(gyp.main(args))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698