epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 1 | #!/usr/bin/python |
epoger@google.com | fd03db0 | 2011-07-28 14:24:55 +0000 | [diff] [blame] | 2 | |
| 3 | # Copyright 2011 The Android Open Source Project |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 4 | # |
epoger@google.com | fd03db0 | 2011-07-28 14:24:55 +0000 | [diff] [blame] | 5 | # Use of this source code is governed by a BSD-style license that can be |
| 6 | # found in the LICENSE file. |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 7 | |
| 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 | |
| 12 | import glob |
| 13 | import os |
djsollen@google.com | ab5e911 | 2012-11-28 14:11:41 +0000 | [diff] [blame] | 14 | import platform |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 15 | import shlex |
| 16 | import sys |
| 17 | |
| 18 | script_dir = os.path.dirname(__file__) |
| 19 | |
| 20 | # Directory within which we can find the gyp source. |
epoger@google.com | 0ae27e0 | 2011-06-14 16:01:04 +0000 | [diff] [blame] | 21 | gyp_source_dir = os.path.join(script_dir, 'third_party', 'externals', 'gyp') |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 22 | |
| 23 | # Directory within which we can find most of Skia's gyp configuration files. |
| 24 | gyp_config_dir = os.path.join(script_dir, 'gyp') |
| 25 | |
digit@google.com | 48af8a0 | 2012-07-30 16:48:13 +0000 | [diff] [blame] | 26 | # Ensure we import our current gyp source's module, not any version |
| 27 | # pre-installed in your PYTHONPATH. |
| 28 | sys.path.insert(0, os.path.join(gyp_source_dir, 'pylib')) |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 29 | import gyp |
| 30 | |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 31 | ENVVAR_GYP_GENERATORS = 'GYP_GENERATORS' |
| 32 | |
| 33 | |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 34 | def 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.com | aa3b6a9 | 2012-03-16 13:52:49 +0000 | [diff] [blame] | 49 | # 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.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 55 | return result |
| 56 | |
djsollen@google.com | ab5e911 | 2012-11-28 14:11:41 +0000 | [diff] [blame] | 57 | # Return the directory where all generated files (including Makefiles) are to |
| 58 | # be written. |
| 59 | def get_output_dir(): |
| 60 | |
| 61 | # SKIA_OUT can be any directory either as a child of the standard out/ |
| 62 | # directory or any given location on the file system (e.g. /tmp/skia) |
| 63 | output_dir = os.getenv('SKIA_OUT') |
| 64 | |
| 65 | if not output_dir: |
| 66 | return os.path.join(os.path.abspath(script_dir), 'out') |
| 67 | |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 68 | if (sys.platform.startswith('darwin') and |
| 69 | (not os.getenv(ENVVAR_GYP_GENERATORS) or |
| 70 | 'xcode' in os.getenv(ENVVAR_GYP_GENERATORS))): |
borenet@google.com | 072ee7d | 2013-07-10 19:07:56 +0000 | [diff] [blame] | 71 | print 'ERROR: variable SKIA_OUT is not valid on Mac (using xcodebuild)' |
djsollen@google.com | ab5e911 | 2012-11-28 14:11:41 +0000 | [diff] [blame] | 72 | sys.exit(-1); |
| 73 | |
| 74 | if os.path.isabs(output_dir): |
| 75 | return output_dir |
| 76 | else: |
| 77 | return os.path.join(os.path.abspath(script_dir), output_dir) |
| 78 | |
| 79 | |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 80 | if __name__ == '__main__': |
| 81 | args = sys.argv[1:] |
| 82 | |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 83 | if not os.getenv(ENVVAR_GYP_GENERATORS): |
| 84 | print ('%s environment variable not set, using default' % |
| 85 | ENVVAR_GYP_GENERATORS) |
| 86 | if sys.platform.startswith('darwin'): |
| 87 | default_gyp_generators = 'xcode' |
| 88 | elif sys.platform.startswith('win'): |
| 89 | default_gyp_generators = 'msvs' |
| 90 | elif sys.platform.startswith('cygwin'): |
| 91 | default_gyp_generators = 'msvs' |
| 92 | else: |
| 93 | default_gyp_generators = 'make' |
| 94 | os.environ[ENVVAR_GYP_GENERATORS] = default_gyp_generators |
| 95 | print '%s is "%s"' % (ENVVAR_GYP_GENERATORS, os.getenv(ENVVAR_GYP_GENERATORS)) |
| 96 | |
epoger@google.com | 2d75cc0 | 2011-07-14 17:31:33 +0000 | [diff] [blame] | 97 | # Set CWD to the directory containing this script. |
| 98 | # This allows us to launch it from other directories, in spite of gyp's |
| 99 | # finickyness about the current working directory. |
| 100 | # See http://b.corp.google.com/issue?id=5019517 ('Linux make build |
| 101 | # (from out dir) no longer runs skia_gyp correctly') |
epoger@google.com | 7fd589c | 2011-07-14 18:55:12 +0000 | [diff] [blame] | 102 | os.chdir(os.path.abspath(script_dir)) |
epoger@google.com | 2d75cc0 | 2011-07-14 17:31:33 +0000 | [diff] [blame] | 103 | |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 104 | # This could give false positives since it doesn't actually do real option |
| 105 | # parsing. Oh well. |
| 106 | gyp_file_specified = False |
| 107 | for arg in args: |
| 108 | if arg.endswith('.gyp'): |
| 109 | gyp_file_specified = True |
| 110 | break |
| 111 | |
| 112 | # If we didn't get a file, then fall back to assuming 'skia.gyp' from the |
| 113 | # same directory as the script. |
epoger@google.com | 2d75cc0 | 2011-07-14 17:31:33 +0000 | [diff] [blame] | 114 | # The gypfile must be passed as a relative path, not an absolute path, |
| 115 | # or else the gyp code doesn't write into the proper output dir. |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 116 | if not gyp_file_specified: |
epoger@google.com | 2d75cc0 | 2011-07-14 17:31:33 +0000 | [diff] [blame] | 117 | args.append('skia.gyp') |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 118 | |
| 119 | args.extend(['-I' + i for i in additional_include_files(args)]) |
| 120 | args.extend(['--depth', '.']) |
| 121 | |
| 122 | # Tell gyp to write the Makefiles into output_dir |
djsollen@google.com | ab5e911 | 2012-11-28 14:11:41 +0000 | [diff] [blame] | 123 | args.extend(['--generator-output', os.path.abspath(get_output_dir())]) |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 124 | |
| 125 | # Tell make to write its output into the same dir |
| 126 | args.extend(['-Goutput_dir=.']) |
| 127 | |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 128 | # By default, we build 'most' instead of 'all' or 'everything'. See skia.gyp. |
| 129 | args.extend(['-Gdefault_target=most']) |
| 130 | |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 131 | print 'Updating projects from gyp files...' |
| 132 | sys.stdout.flush() |
| 133 | |
| 134 | # Off we go... |
| 135 | sys.exit(gyp.main(args)) |