gyp_skia 5.93 KB
Newer Older
mtklein's avatar
mtklein committed
1
#!/usr/bin/env python
2 3

# Copyright 2011 The Android Open Source Project
4
#
5 6
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
7 8 9 10 11 12 13

# This script is a wrapper which invokes gyp with the correct --depth argument,
# and supports the automatic regeneration of build files if all.gyp is
# changed (Linux-only).

import glob
import os
14
import platform
15 16 17
import shlex
import sys

18
script_dir = os.path.abspath(os.path.dirname(__file__))
19 20

# Directory within which we can find the gyp source.
21
gyp_source_dir = os.path.join(script_dir, 'third_party', 'externals', 'gyp')
22 23 24 25

# Directory within which we can find most of Skia's gyp configuration files.
gyp_config_dir = os.path.join(script_dir, 'gyp')

26 27 28 29
# Allow the user to override the directory where gyp should produce its output
# Default to the current directory.
gyp_output_dir = os.environ.get('SKIA_GYP_OUTPUT_DIR', '.')

30 31 32
# Ensure we import our current gyp source's module, not any version
# pre-installed in your PYTHONPATH.
sys.path.insert(0, os.path.join(gyp_source_dir, 'pylib'))
33 34
import gyp

35
ENVVAR_GYP_GENERATORS = 'GYP_GENERATORS'
36
ENVVAR_GYP_GENERATOR_FLAGS = 'GYP_GENERATOR_FLAGS'
37 38


39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
def additional_include_files(args=[]):
  # Determine the include files specified on the command line.
  # This doesn't cover all the different option formats you can use,
  # but it's mainly intended to avoid duplicating flags on the automatic
  # makefile regeneration which only uses this format.
  specified_includes = set()
  for arg in args:
    if arg.startswith('-I') and len(arg) > 2:
      specified_includes.add(os.path.realpath(arg[2:]))

  result = []
  def AddInclude(path):
    if os.path.realpath(path) not in specified_includes:
      result.append(path)

54 55 56 57 58 59
  # Always include common.gypi.
  # We do this, rather than including common.gypi explicitly in all our gyp
  # files, so that gyp files we use but do not maintain (e.g.,
  # third_party/externals/libjpeg/libjpeg.gyp) will include common.gypi too.
  AddInclude(os.path.join(gyp_config_dir, 'common.gypi'))

60 61
  return result

62
# Return the directory where all the build files are to be written.
63 64 65 66 67 68 69 70 71 72 73 74 75 76
def get_output_dir():
  # SKIA_OUT can be any directory either as a child of the standard out/
  # directory or any given location on the file system (e.g. /tmp/skia)
  output_dir = os.getenv('SKIA_OUT')

  if not output_dir:
    return os.path.join(os.path.abspath(script_dir), 'out')

  if os.path.isabs(output_dir):
    return output_dir
  else:
    return os.path.join(os.path.abspath(script_dir), output_dir)


77 78 79
if __name__ == '__main__':
  args = sys.argv[1:]

80 81
  if not os.getenv(ENVVAR_GYP_GENERATORS):
    if sys.platform.startswith('darwin'):
82
      default_gyp_generators = 'ninja,xcode'
83
    elif sys.platform.startswith('win'):
84
      default_gyp_generators = 'ninja,msvs-ninja'
85
    elif sys.platform.startswith('cygwin'):
86
      default_gyp_generators = 'ninja,msvs-ninja'
87
    else:
88
      default_gyp_generators = 'ninja'
89
    os.environ[ENVVAR_GYP_GENERATORS] = default_gyp_generators
mtklein's avatar
mtklein committed
90 91
    print ('%s environment variable not set, using default, %s' %
           (ENVVAR_GYP_GENERATORS, default_gyp_generators))
92

borenet's avatar
borenet committed
93
  vs2013_runtime_dll_dirs = None
94 95 96 97 98 99 100
  if os.getenv('CHROME_HEADLESS', '0') == '1':
    if sys.platform.startswith('win') or sys.platform.startswith('cygwin'):
      chrome_path = os.getenv('CHROME_PATH')
      os.chdir(chrome_path)
      sys.path.append(os.path.join(chrome_path, 'build'))
      sys.path.append(os.path.join(chrome_path, 'tools'))
      import vs_toolchain
borenet's avatar
borenet committed
101 102
      vs2013_runtime_dll_dirs = \
          vs_toolchain.SetEnvironmentAndGetRuntimeDllDirs()
103

104 105 106 107 108
  # Set CWD to the directory containing this script.
  # This allows us to launch it from other directories, in spite of gyp's
  # finickyness about the current working directory.
  # See http://b.corp.google.com/issue?id=5019517 ('Linux make build
  # (from out dir) no longer runs skia_gyp correctly')
109
  os.chdir(os.path.abspath(script_dir))
110

111 112 113 114 115 116 117 118 119 120
  # This could give false positives since it doesn't actually do real option
  # parsing.  Oh well.
  gyp_file_specified = False
  for arg in args:
    if arg.endswith('.gyp'):
      gyp_file_specified = True
      break

  # If we didn't get a file, then fall back to assuming 'skia.gyp' from the
  # same directory as the script.
121 122
  # The gypfile must be passed as a relative path, not an absolute path,
  # or else the gyp code doesn't write into the proper output dir.
123
  if not gyp_file_specified:
124
    args.append('skia.gyp')
125 126 127 128

  args.extend(['-I' + i for i in additional_include_files(args)])
  args.extend(['--depth', '.'])

129
  # Tell gyp to write the build files into output_dir.
130
  args.extend(['--generator-output', os.path.abspath(get_output_dir())])
131

132
  # Tell ninja to write its output into the same directory.
133
  args.extend(['-Goutput_dir=%s' % gyp_output_dir])
134

135 136 137
  # By default, we build 'most' instead of 'all' or 'everything'. See skia.gyp.
  args.extend(['-Gdefault_target=most'])

138 139 140 141 142 143 144
  # Fail if any files specified in the project are missing
  if sys.platform.startswith('win'):
    gyp_generator_flags = os.getenv(ENVVAR_GYP_GENERATOR_FLAGS, '')
    if not 'msvs_error_on_missing_sources' in gyp_generator_flags:
      os.environ[ENVVAR_GYP_GENERATOR_FLAGS] = (
          gyp_generator_flags + ' msvs_error_on_missing_sources=1')

mtklein's avatar
mtklein committed
145 146 147 148 149
  # GYP is very conservative about how many concurrent linker calls it allows,
  # to fit in RAM. We don't need to be nearly as conservative as Chrome.  We'll
  # just turn that feature off.
  os.environ['GYP_LINK_CONCURRENCY'] = '9001'

150 151 152 153 154
  if '--dry-run' in args:
    args.remove('--dry-run')
    print gyp_source_dir, ' '.join(args)
  else:
    # Off we go...
borenet's avatar
borenet committed
155 156 157 158 159 160 161 162 163 164 165
    res = gyp.main(args)
    if res:
      sys.exit(res)

  # This code is copied from Chrome's build/gyp_chromium. It's not clear why
  # the *_runtime variables are reversed.
  if vs2013_runtime_dll_dirs:
    x64_runtime, x86_runtime = vs2013_runtime_dll_dirs
    vs_toolchain.CopyVsRuntimeDlls(
        os.path.join(os.getenv('CHROME_PATH'), get_output_dir()),
        (x86_runtime, x64_runtime))