mtklein | 27e88d0 | 2016-02-19 11:43:57 -0800 | [diff] [blame] | 1 | #!/usr/bin/env 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 |
borenet | 1195260 | 2016-03-18 08:33:38 -0700 | [diff] [blame] | 16 | import stat |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 17 | import sys |
| 18 | |
commit-bot@chromium.org | bf6f6ae | 2014-04-17 16:11:58 +0000 | [diff] [blame] | 19 | script_dir = os.path.abspath(os.path.dirname(__file__)) |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 20 | |
| 21 | # Directory within which we can find the gyp source. |
epoger@google.com | 0ae27e0 | 2011-06-14 16:01:04 +0000 | [diff] [blame] | 22 | 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] | 23 | |
| 24 | # Directory within which we can find most of Skia's gyp configuration files. |
| 25 | gyp_config_dir = os.path.join(script_dir, 'gyp') |
| 26 | |
humper | 4572ae9 | 2014-09-29 11:42:25 -0700 | [diff] [blame] | 27 | # Allow the user to override the directory where gyp should produce its output |
| 28 | # Default to the current directory. |
| 29 | gyp_output_dir = os.environ.get('SKIA_GYP_OUTPUT_DIR', '.') |
| 30 | |
digit@google.com | 48af8a0 | 2012-07-30 16:48:13 +0000 | [diff] [blame] | 31 | # Ensure we import our current gyp source's module, not any version |
| 32 | # pre-installed in your PYTHONPATH. |
| 33 | sys.path.insert(0, os.path.join(gyp_source_dir, 'pylib')) |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 34 | import gyp |
| 35 | |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 36 | ENVVAR_GYP_GENERATORS = 'GYP_GENERATORS' |
jvanverth | 4962140 | 2014-06-04 15:57:57 -0700 | [diff] [blame] | 37 | ENVVAR_GYP_GENERATOR_FLAGS = 'GYP_GENERATOR_FLAGS' |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 38 | |
| 39 | |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 40 | def additional_include_files(args=[]): |
| 41 | # Determine the include files specified on the command line. |
| 42 | # This doesn't cover all the different option formats you can use, |
| 43 | # but it's mainly intended to avoid duplicating flags on the automatic |
| 44 | # makefile regeneration which only uses this format. |
| 45 | specified_includes = set() |
| 46 | for arg in args: |
| 47 | if arg.startswith('-I') and len(arg) > 2: |
| 48 | specified_includes.add(os.path.realpath(arg[2:])) |
| 49 | |
| 50 | result = [] |
| 51 | def AddInclude(path): |
| 52 | if os.path.realpath(path) not in specified_includes: |
| 53 | result.append(path) |
| 54 | |
epoger@google.com | aa3b6a9 | 2012-03-16 13:52:49 +0000 | [diff] [blame] | 55 | # Always include common.gypi. |
| 56 | # We do this, rather than including common.gypi explicitly in all our gyp |
| 57 | # files, so that gyp files we use but do not maintain (e.g., |
| 58 | # third_party/externals/libjpeg/libjpeg.gyp) will include common.gypi too. |
| 59 | AddInclude(os.path.join(gyp_config_dir, 'common.gypi')) |
| 60 | |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 61 | return result |
| 62 | |
tfarina@chromium.org | 2b0126b | 2014-05-08 15:13:52 +0000 | [diff] [blame] | 63 | # Return the directory where all the build files are to be written. |
djsollen@google.com | ab5e911 | 2012-11-28 14:11:41 +0000 | [diff] [blame] | 64 | def get_output_dir(): |
djsollen@google.com | ab5e911 | 2012-11-28 14:11:41 +0000 | [diff] [blame] | 65 | # SKIA_OUT can be any directory either as a child of the standard out/ |
| 66 | # directory or any given location on the file system (e.g. /tmp/skia) |
| 67 | output_dir = os.getenv('SKIA_OUT') |
| 68 | |
| 69 | if not output_dir: |
| 70 | return os.path.join(os.path.abspath(script_dir), 'out') |
| 71 | |
djsollen@google.com | ab5e911 | 2012-11-28 14:11:41 +0000 | [diff] [blame] | 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.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 78 | if __name__ == '__main__': |
| 79 | args = sys.argv[1:] |
| 80 | |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 81 | if not os.getenv(ENVVAR_GYP_GENERATORS): |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 82 | if sys.platform.startswith('darwin'): |
epoger@google.com | 58d69d8 | 2014-04-01 07:02:41 +0000 | [diff] [blame] | 83 | default_gyp_generators = 'ninja,xcode' |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 84 | elif sys.platform.startswith('win'): |
bsalomon | a5c2824 | 2014-06-05 07:10:21 -0700 | [diff] [blame] | 85 | default_gyp_generators = 'ninja,msvs-ninja' |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 86 | elif sys.platform.startswith('cygwin'): |
bsalomon | a5c2824 | 2014-06-05 07:10:21 -0700 | [diff] [blame] | 87 | default_gyp_generators = 'ninja,msvs-ninja' |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 88 | else: |
epoger@google.com | 58d69d8 | 2014-04-01 07:02:41 +0000 | [diff] [blame] | 89 | default_gyp_generators = 'ninja' |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 90 | os.environ[ENVVAR_GYP_GENERATORS] = default_gyp_generators |
mtklein | 27e88d0 | 2016-02-19 11:43:57 -0800 | [diff] [blame] | 91 | print ('%s environment variable not set, using default, %s' % |
| 92 | (ENVVAR_GYP_GENERATORS, default_gyp_generators)) |
commit-bot@chromium.org | 7225506 | 2014-03-20 19:59:09 +0000 | [diff] [blame] | 93 | |
borenet | 1195260 | 2016-03-18 08:33:38 -0700 | [diff] [blame] | 94 | vs_runtime_dll_dirs = None |
Eric Boren | 9118413 | 2014-06-16 10:02:42 -0400 | [diff] [blame] | 95 | if os.getenv('CHROME_HEADLESS', '0') == '1': |
| 96 | if sys.platform.startswith('win') or sys.platform.startswith('cygwin'): |
| 97 | chrome_path = os.getenv('CHROME_PATH') |
| 98 | os.chdir(chrome_path) |
| 99 | sys.path.append(os.path.join(chrome_path, 'build')) |
| 100 | sys.path.append(os.path.join(chrome_path, 'tools')) |
| 101 | import vs_toolchain |
borenet | 1195260 | 2016-03-18 08:33:38 -0700 | [diff] [blame] | 102 | vs_runtime_dll_dirs = \ |
borenet | ad2ab61 | 2014-06-16 13:41:25 -0700 | [diff] [blame] | 103 | vs_toolchain.SetEnvironmentAndGetRuntimeDllDirs() |
Eric Boren | 9118413 | 2014-06-16 10:02:42 -0400 | [diff] [blame] | 104 | |
epoger@google.com | 2d75cc0 | 2011-07-14 17:31:33 +0000 | [diff] [blame] | 105 | # Set CWD to the directory containing this script. |
| 106 | # This allows us to launch it from other directories, in spite of gyp's |
| 107 | # finickyness about the current working directory. |
| 108 | # See http://b.corp.google.com/issue?id=5019517 ('Linux make build |
| 109 | # (from out dir) no longer runs skia_gyp correctly') |
epoger@google.com | 7fd589c | 2011-07-14 18:55:12 +0000 | [diff] [blame] | 110 | os.chdir(os.path.abspath(script_dir)) |
epoger@google.com | 2d75cc0 | 2011-07-14 17:31:33 +0000 | [diff] [blame] | 111 | |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 112 | # This could give false positives since it doesn't actually do real option |
| 113 | # parsing. Oh well. |
| 114 | gyp_file_specified = False |
| 115 | for arg in args: |
| 116 | if arg.endswith('.gyp'): |
| 117 | gyp_file_specified = True |
| 118 | break |
| 119 | |
| 120 | # If we didn't get a file, then fall back to assuming 'skia.gyp' from the |
| 121 | # same directory as the script. |
epoger@google.com | 2d75cc0 | 2011-07-14 17:31:33 +0000 | [diff] [blame] | 122 | # The gypfile must be passed as a relative path, not an absolute path, |
| 123 | # 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] | 124 | if not gyp_file_specified: |
epoger@google.com | 2d75cc0 | 2011-07-14 17:31:33 +0000 | [diff] [blame] | 125 | args.append('skia.gyp') |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 126 | |
| 127 | args.extend(['-I' + i for i in additional_include_files(args)]) |
| 128 | args.extend(['--depth', '.']) |
| 129 | |
tfarina@chromium.org | 2b0126b | 2014-05-08 15:13:52 +0000 | [diff] [blame] | 130 | # Tell gyp to write the build files into output_dir. |
borenet | 1195260 | 2016-03-18 08:33:38 -0700 | [diff] [blame] | 131 | out_dir = os.path.abspath(get_output_dir()) |
| 132 | args.extend(['--generator-output', out_dir]) |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 133 | |
tfarina@chromium.org | 2b0126b | 2014-05-08 15:13:52 +0000 | [diff] [blame] | 134 | # Tell ninja to write its output into the same directory. |
humper | 4572ae9 | 2014-09-29 11:42:25 -0700 | [diff] [blame] | 135 | args.extend(['-Goutput_dir=%s' % gyp_output_dir]) |
epoger@google.com | 1e8e056 | 2011-06-07 14:48:41 +0000 | [diff] [blame] | 136 | |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 137 | # By default, we build 'most' instead of 'all' or 'everything'. See skia.gyp. |
| 138 | args.extend(['-Gdefault_target=most']) |
| 139 | |
jvanverth | 4962140 | 2014-06-04 15:57:57 -0700 | [diff] [blame] | 140 | # Fail if any files specified in the project are missing |
| 141 | if sys.platform.startswith('win'): |
| 142 | gyp_generator_flags = os.getenv(ENVVAR_GYP_GENERATOR_FLAGS, '') |
| 143 | if not 'msvs_error_on_missing_sources' in gyp_generator_flags: |
| 144 | os.environ[ENVVAR_GYP_GENERATOR_FLAGS] = ( |
| 145 | gyp_generator_flags + ' msvs_error_on_missing_sources=1') |
| 146 | |
mtklein | 2e44b51 | 2014-06-06 08:27:07 -0700 | [diff] [blame] | 147 | # GYP is very conservative about how many concurrent linker calls it allows, |
| 148 | # to fit in RAM. We don't need to be nearly as conservative as Chrome. We'll |
| 149 | # just turn that feature off. |
| 150 | os.environ['GYP_LINK_CONCURRENCY'] = '9001' |
| 151 | |
bungeman@google.com | bbce730 | 2014-05-09 15:04:18 +0000 | [diff] [blame] | 152 | if '--dry-run' in args: |
| 153 | args.remove('--dry-run') |
| 154 | print gyp_source_dir, ' '.join(args) |
| 155 | else: |
| 156 | # Off we go... |
borenet | ad2ab61 | 2014-06-16 13:41:25 -0700 | [diff] [blame] | 157 | res = gyp.main(args) |
| 158 | if res: |
| 159 | sys.exit(res) |
| 160 | |
| 161 | # This code is copied from Chrome's build/gyp_chromium. It's not clear why |
| 162 | # the *_runtime variables are reversed. |
borenet | 1195260 | 2016-03-18 08:33:38 -0700 | [diff] [blame] | 163 | if vs_runtime_dll_dirs: |
| 164 | # The DLLs might be read-only, which will cause an error when attempting to |
| 165 | # overwrite them. Make them writeable first. |
| 166 | for path, dirs, files in os.walk(out_dir): |
| 167 | for f in files: |
| 168 | if f.endswith('.dll'): |
| 169 | os.chmod(os.path.join(path, f), stat.S_IWRITE) |
| 170 | |
| 171 | x64_runtime, x86_runtime = vs_runtime_dll_dirs |
borenet | ad2ab61 | 2014-06-16 13:41:25 -0700 | [diff] [blame] | 172 | vs_toolchain.CopyVsRuntimeDlls( |
borenet | 1195260 | 2016-03-18 08:33:38 -0700 | [diff] [blame] | 173 | os.path.join(os.getenv('CHROME_PATH'), out_dir), |
borenet | ad2ab61 | 2014-06-16 13:41:25 -0700 | [diff] [blame] | 174 | (x86_runtime, x64_runtime)) |