blob: 9be2b9e01519233207ace24cae0176376a00abb3 [file] [log] [blame]
[email protected]abab8d72012-11-14 04:59:481# Copyright (c) 2012 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# This file helps gyp_chromium and landmines correctly set up the gyp
6# environment from chromium.gyp_env on disk
7
8import os
9
10SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
11CHROME_SRC = os.path.dirname(SCRIPT_DIR)
12
13
14def apply_gyp_environment_from_file(file_path):
15 """Reads in a *.gyp_env file and applies the valid keys to os.environ."""
16 if not os.path.exists(file_path):
17 return
[email protected]107e33a2012-11-15 01:51:5418 with open(file_path, 'rU') as f:
[email protected]abab8d72012-11-14 04:59:4819 file_contents = f.read()
20 try:
21 file_data = eval(file_contents, {'__builtins__': None}, None)
22 except SyntaxError, e:
23 e.filename = os.path.abspath(file_path)
24 raise
25 supported_vars = (
26 'CC',
[email protected]68294fd2013-04-17 21:15:2727 'CC_wrapper',
[email protected]abab8d72012-11-14 04:59:4828 'CHROMIUM_GYP_FILE',
29 'CHROMIUM_GYP_SYNTAX_CHECK',
30 'CXX',
[email protected]68294fd2013-04-17 21:15:2731 'CXX_wrapper',
[email protected]abab8d72012-11-14 04:59:4832 'GYP_DEFINES',
33 'GYP_GENERATOR_FLAGS',
[email protected]ba2034102013-05-07 21:05:3934 'GYP_CROSSCOMPILE',
[email protected]abab8d72012-11-14 04:59:4835 'GYP_GENERATOR_OUTPUT',
36 'GYP_GENERATORS',
justsomeguycec083d32014-11-05 18:57:1537 'GYP_INCLUDE_FIRST',
38 'GYP_INCLUDE_LAST',
[email protected]dcd6d6e2014-01-13 21:29:3439 'GYP_MSVS_VERSION',
[email protected]abab8d72012-11-14 04:59:4840 )
41 for var in supported_vars:
42 file_val = file_data.get(var)
43 if file_val:
44 if var in os.environ:
dongseong.hwangce4b0d12015-03-05 07:08:1545 behavior = 'replaces'
46 if var == 'GYP_DEFINES':
scheibeedc9ac2015-03-14 00:14:0147 result = file_val + ' ' + os.environ[var]
48 behavior = 'merges with, and individual components override,'
49 else:
50 result = os.environ[var]
dongseong.hwangce4b0d12015-03-05 07:08:1551 print 'INFO: Environment value for "%s" %s value in %s' % (
52 var, behavior, os.path.abspath(file_path)
[email protected]abab8d72012-11-14 04:59:4853 )
scheibeedc9ac2015-03-14 00:14:0154 string_padding = max(len(var), len(file_path), len('result'))
55 print ' %s: %s' % (var.rjust(string_padding), os.environ[var])
56 print ' %s: %s' % (file_path.rjust(string_padding), file_val)
57 os.environ[var] = result
[email protected]abab8d72012-11-14 04:59:4858 else:
59 os.environ[var] = file_val
60
61
62def apply_chromium_gyp_env():
63 if 'SKIP_CHROMIUM_GYP_ENV' not in os.environ:
64 # Update the environment based on chromium.gyp_env
65 path = os.path.join(os.path.dirname(CHROME_SRC), 'chromium.gyp_env')
66 apply_gyp_environment_from_file(path)