blob: 8554412474cc9d1216a92632f52c0525efaa23b8 [file] [log] [blame]
epoger@google.com1e8e0562011-06-07 14:48:41 +00001#!/usr/bin/python
2#
3# Copyright (C) 2011 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# This script is a wrapper which invokes gyp with the correct --depth argument,
18# and supports the automatic regeneration of build files if all.gyp is
19# changed (Linux-only).
20
21import glob
22import os
23import shlex
24import sys
25
26script_dir = os.path.dirname(__file__)
27
28# Directory within which we can find the gyp source.
epoger@google.com0ae27e02011-06-14 16:01:04 +000029gyp_source_dir = os.path.join(script_dir, 'third_party', 'externals', 'gyp')
epoger@google.com1e8e0562011-06-07 14:48:41 +000030
31# Directory within which we can find most of Skia's gyp configuration files.
32gyp_config_dir = os.path.join(script_dir, 'gyp')
33
34# Directory within which we want all generated files (including Makefiles)
35# to be written.
36output_dir = os.path.join(os.path.abspath(script_dir), 'out')
37
38sys.path.append(os.path.join(gyp_source_dir, 'pylib'))
39import gyp
40
41def additional_include_files(args=[]):
42 # Determine the include files specified on the command line.
43 # This doesn't cover all the different option formats you can use,
44 # but it's mainly intended to avoid duplicating flags on the automatic
45 # makefile regeneration which only uses this format.
46 specified_includes = set()
47 for arg in args:
48 if arg.startswith('-I') and len(arg) > 2:
49 specified_includes.add(os.path.realpath(arg[2:]))
50
51 result = []
52 def AddInclude(path):
53 if os.path.realpath(path) not in specified_includes:
54 result.append(path)
55
epoger@google.com1e8e0562011-06-07 14:48:41 +000056 return result
57
58if __name__ == '__main__':
59 args = sys.argv[1:]
60
61 # This could give false positives since it doesn't actually do real option
62 # parsing. Oh well.
63 gyp_file_specified = False
64 for arg in args:
65 if arg.endswith('.gyp'):
66 gyp_file_specified = True
67 break
68
69 # If we didn't get a file, then fall back to assuming 'skia.gyp' from the
70 # same directory as the script.
71 if not gyp_file_specified:
72 args.append(os.path.join(script_dir, 'skia.gyp'))
73
74 args.extend(['-I' + i for i in additional_include_files(args)])
75 args.extend(['--depth', '.'])
76
77 # Tell gyp to write the Makefiles into output_dir
78 args.extend(['--generator-output', os.path.abspath(output_dir)])
79
80 # Tell make to write its output into the same dir
81 args.extend(['-Goutput_dir=.'])
82
epoger@google.com0fb21252011-07-13 21:30:14 +000083 # Special arguments for generating Visual Studio projects:
84 # - msvs_version forces generation of Visual Studio 2010 project so that we
85 # can use msbuild.exe
86 # - msvs_abspath_output is a workaround for
87 # http://code.google.com/p/gyp/issues/detail?id=201
88 args.extend(['-Gmsvs_version=2010'])
89 args.extend(['-Gmsvs_abspath_output'])
90
epoger@google.com1e8e0562011-06-07 14:48:41 +000091 print 'Updating projects from gyp files...'
92 sys.stdout.flush()
93
94 # Off we go...
95 sys.exit(gyp.main(args))