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

Side by Side Diff: build/gyp_chromium

Issue 11866008: Add a WebCore directory to the python path so we can use pymod_do_main (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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 gyp_helper 11 import gyp_helper
12 import os 12 import os
13 import shlex 13 import shlex
14 import subprocess 14 import subprocess
15 import sys 15 import sys
16 16
17 script_dir = os.path.dirname(os.path.realpath(__file__)) 17 script_dir = os.path.dirname(os.path.realpath(__file__))
18 chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir)) 18 chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir))
19 19
20 sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib')) 20 sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib'))
21 import gyp 21 import gyp
22 22
23 # Add paths so that pymod_do_main(...) can import files. 23 # Add paths so that pymod_do_main(...) can import files.
24 sys.path.insert(1, os.path.join(chrome_src, 'tools', 'generate_shim_headers')) 24 sys.path.insert(1, os.path.join(chrome_src, 'tools', 'generate_shim_headers'))
25 sys.path.insert(1, os.path.join(chrome_src, 'tools', 'grit')) 25 sys.path.insert(1, os.path.join(chrome_src, 'tools', 'grit'))
26 sys.path.insert(1, os.path.join(chrome_src, 'chrome', 'tools', 'build')) 26 sys.path.insert(1, os.path.join(chrome_src, 'chrome', 'tools', 'build'))
27 sys.path.insert(1, os.path.join(chrome_src, 'native_client', 'build')) 27 sys.path.insert(1, os.path.join(chrome_src, 'native_client', 'build'))
28 sys.path.insert(1, os.path.join(chrome_src, 'third_party', 'WebKit',
29 'Source', 'WebCore', 'WebCore.gyp', 'scripts'))
28 30
29 31
30 # On Windows, Psyco shortens warm runs of build/gyp_chromium by about 32 # On Windows, Psyco shortens warm runs of build/gyp_chromium by about
31 # 20 seconds on a z600 machine with 12 GB of RAM, from 90 down to 70 33 # 20 seconds on a z600 machine with 12 GB of RAM, from 90 down to 70
32 # seconds. Conversely, memory usage of build/gyp_chromium with Psyco 34 # seconds. Conversely, memory usage of build/gyp_chromium with Psyco
33 # maxes out at about 158 MB vs. 132 MB without it. 35 # maxes out at about 158 MB vs. 132 MB without it.
34 # 36 #
35 # Psyco uses native libraries, so we need to load a different 37 # Psyco uses native libraries, so we need to load a different
36 # installation depending on which OS we are running under. It has not 38 # installation depending on which OS we are running under. It has not
37 # been tested whether using Psyco on our Mac and Linux builds is worth 39 # been tested whether using Psyco on our Mac and Linux builds is worth
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 # to enfore syntax checking. 137 # to enfore syntax checking.
136 syntax_check = os.environ.get('CHROMIUM_GYP_SYNTAX_CHECK') 138 syntax_check = os.environ.get('CHROMIUM_GYP_SYNTAX_CHECK')
137 if syntax_check and int(syntax_check): 139 if syntax_check and int(syntax_check):
138 args.append('--check') 140 args.append('--check')
139 141
140 print 'Updating projects from gyp files...' 142 print 'Updating projects from gyp files...'
141 sys.stdout.flush() 143 sys.stdout.flush()
142 144
143 # Off we go... 145 # Off we go...
144 sys.exit(gyp.main(args)) 146 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