blob: 66adf08cb90b465b680533857a6acb71910d665c [file] [log] [blame]
epoger@google.com1e8e0562011-06-07 14:48:41 +00001#!/usr/bin/python
epoger@google.comfd03db02011-07-28 14:24:55 +00002
3# Copyright 2011 The Android Open Source Project
epoger@google.com1e8e0562011-06-07 14:48:41 +00004#
epoger@google.comfd03db02011-07-28 14:24:55 +00005# Use of this source code is governed by a BSD-style license that can be
6# found in the LICENSE file.
epoger@google.com1e8e0562011-06-07 14:48:41 +00007
8# This script is a wrapper which invokes gyp with the correct --depth argument,
9# and supports the automatic regeneration of build files if all.gyp is
10# changed (Linux-only).
11
12import glob
13import os
djsollen@google.comab5e9112012-11-28 14:11:41 +000014import platform
epoger@google.com1e8e0562011-06-07 14:48:41 +000015import shlex
16import sys
17
commit-bot@chromium.orgbf6f6ae2014-04-17 16:11:58 +000018script_dir = os.path.abspath(os.path.dirname(__file__))
epoger@google.com1e8e0562011-06-07 14:48:41 +000019
20# Directory within which we can find the gyp source.
epoger@google.com0ae27e02011-06-14 16:01:04 +000021gyp_source_dir = os.path.join(script_dir, 'third_party', 'externals', 'gyp')
epoger@google.com1e8e0562011-06-07 14:48:41 +000022
23# Directory within which we can find most of Skia's gyp configuration files.
24gyp_config_dir = os.path.join(script_dir, 'gyp')
25
digit@google.com48af8a02012-07-30 16:48:13 +000026# Ensure we import our current gyp source's module, not any version
27# pre-installed in your PYTHONPATH.
28sys.path.insert(0, os.path.join(gyp_source_dir, 'pylib'))
epoger@google.com1e8e0562011-06-07 14:48:41 +000029import gyp
30
commit-bot@chromium.org72255062014-03-20 19:59:09 +000031ENVVAR_GYP_GENERATORS = 'GYP_GENERATORS'
32
33
epoger@google.com1e8e0562011-06-07 14:48:41 +000034def additional_include_files(args=[]):
35 # Determine the include files specified on the command line.
36 # This doesn't cover all the different option formats you can use,
37 # but it's mainly intended to avoid duplicating flags on the automatic
38 # makefile regeneration which only uses this format.
39 specified_includes = set()
40 for arg in args:
41 if arg.startswith('-I') and len(arg) > 2:
42 specified_includes.add(os.path.realpath(arg[2:]))
43
44 result = []
45 def AddInclude(path):
46 if os.path.realpath(path) not in specified_includes:
47 result.append(path)
48
epoger@google.comaa3b6a92012-03-16 13:52:49 +000049 # Always include common.gypi.
50 # We do this, rather than including common.gypi explicitly in all our gyp
51 # files, so that gyp files we use but do not maintain (e.g.,
52 # third_party/externals/libjpeg/libjpeg.gyp) will include common.gypi too.
53 AddInclude(os.path.join(gyp_config_dir, 'common.gypi'))
54
epoger@google.com1e8e0562011-06-07 14:48:41 +000055 return result
56
tfarina@chromium.org2b0126b2014-05-08 15:13:52 +000057# Return the directory where all the build files are to be written.
djsollen@google.comab5e9112012-11-28 14:11:41 +000058def get_output_dir():
djsollen@google.comab5e9112012-11-28 14:11:41 +000059 # SKIA_OUT can be any directory either as a child of the standard out/
60 # directory or any given location on the file system (e.g. /tmp/skia)
61 output_dir = os.getenv('SKIA_OUT')
62
63 if not output_dir:
64 return os.path.join(os.path.abspath(script_dir), 'out')
65
commit-bot@chromium.org72255062014-03-20 19:59:09 +000066 if (sys.platform.startswith('darwin') and
67 (not os.getenv(ENVVAR_GYP_GENERATORS) or
68 'xcode' in os.getenv(ENVVAR_GYP_GENERATORS))):
borenet@google.com072ee7d2013-07-10 19:07:56 +000069 print 'ERROR: variable SKIA_OUT is not valid on Mac (using xcodebuild)'
djsollen@google.comab5e9112012-11-28 14:11:41 +000070 sys.exit(-1);
71
72 if os.path.isabs(output_dir):
73 return output_dir
74 else:
75 return os.path.join(os.path.abspath(script_dir), output_dir)
76
77
epoger@google.com1e8e0562011-06-07 14:48:41 +000078if __name__ == '__main__':
79 args = sys.argv[1:]
80
commit-bot@chromium.org72255062014-03-20 19:59:09 +000081 if not os.getenv(ENVVAR_GYP_GENERATORS):
82 print ('%s environment variable not set, using default' %
83 ENVVAR_GYP_GENERATORS)
84 if sys.platform.startswith('darwin'):
epoger@google.com58d69d82014-04-01 07:02:41 +000085 default_gyp_generators = 'ninja,xcode'
commit-bot@chromium.org72255062014-03-20 19:59:09 +000086 elif sys.platform.startswith('win'):
epoger@google.com58d69d82014-04-01 07:02:41 +000087 default_gyp_generators = 'ninja,msvs'
commit-bot@chromium.org72255062014-03-20 19:59:09 +000088 elif sys.platform.startswith('cygwin'):
epoger@google.com58d69d82014-04-01 07:02:41 +000089 default_gyp_generators = 'ninja,msvs'
commit-bot@chromium.org72255062014-03-20 19:59:09 +000090 else:
epoger@google.com58d69d82014-04-01 07:02:41 +000091 default_gyp_generators = 'ninja'
commit-bot@chromium.org72255062014-03-20 19:59:09 +000092 os.environ[ENVVAR_GYP_GENERATORS] = default_gyp_generators
93 print '%s is "%s"' % (ENVVAR_GYP_GENERATORS, os.getenv(ENVVAR_GYP_GENERATORS))
94
epoger@google.com2d75cc02011-07-14 17:31:33 +000095 # Set CWD to the directory containing this script.
96 # This allows us to launch it from other directories, in spite of gyp's
97 # finickyness about the current working directory.
98 # See http://b.corp.google.com/issue?id=5019517 ('Linux make build
99 # (from out dir) no longer runs skia_gyp correctly')
epoger@google.com7fd589c2011-07-14 18:55:12 +0000100 os.chdir(os.path.abspath(script_dir))
epoger@google.com2d75cc02011-07-14 17:31:33 +0000101
epoger@google.com1e8e0562011-06-07 14:48:41 +0000102 # This could give false positives since it doesn't actually do real option
103 # parsing. Oh well.
104 gyp_file_specified = False
105 for arg in args:
106 if arg.endswith('.gyp'):
107 gyp_file_specified = True
108 break
109
110 # If we didn't get a file, then fall back to assuming 'skia.gyp' from the
111 # same directory as the script.
epoger@google.com2d75cc02011-07-14 17:31:33 +0000112 # The gypfile must be passed as a relative path, not an absolute path,
113 # or else the gyp code doesn't write into the proper output dir.
epoger@google.com1e8e0562011-06-07 14:48:41 +0000114 if not gyp_file_specified:
epoger@google.com2d75cc02011-07-14 17:31:33 +0000115 args.append('skia.gyp')
epoger@google.com1e8e0562011-06-07 14:48:41 +0000116
117 args.extend(['-I' + i for i in additional_include_files(args)])
118 args.extend(['--depth', '.'])
119
tfarina@chromium.org2b0126b2014-05-08 15:13:52 +0000120 # Tell gyp to write the build files into output_dir.
djsollen@google.comab5e9112012-11-28 14:11:41 +0000121 args.extend(['--generator-output', os.path.abspath(get_output_dir())])
epoger@google.com1e8e0562011-06-07 14:48:41 +0000122
tfarina@chromium.org2b0126b2014-05-08 15:13:52 +0000123 # Tell ninja to write its output into the same directory.
epoger@google.com1e8e0562011-06-07 14:48:41 +0000124 args.extend(['-Goutput_dir=.'])
125
epoger@google.com9c875d32012-10-18 16:10:56 +0000126 # By default, we build 'most' instead of 'all' or 'everything'. See skia.gyp.
127 args.extend(['-Gdefault_target=most'])
128
epoger@google.com1e8e0562011-06-07 14:48:41 +0000129 print 'Updating projects from gyp files...'
130 sys.stdout.flush()
131
bungeman@google.combbce7302014-05-09 15:04:18 +0000132 if '--dry-run' in args:
133 args.remove('--dry-run')
134 print gyp_source_dir, ' '.join(args)
135 else:
136 # Off we go...
137 sys.exit(gyp.main(args))