mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
7211ecb704
This enables more independence in the way you can structure your checkout using gclient. BUG= R=ahe@google.com Review URL: https://codereview.chromium.org//1023893003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44640 260f80e4-7a28-3924-810f-c04153c831b5
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright (c) 2012 The Dart Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
"""
|
|
Invoke gyp to generate build files for building the Dart VM.
|
|
"""
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
SCRIPT_DIR = os.path.dirname(sys.argv[0])
|
|
DART_ROOT = os.path.realpath(os.path.join(SCRIPT_DIR, '..'))
|
|
|
|
def execute(args):
|
|
process = subprocess.Popen(args, cwd=DART_ROOT)
|
|
process.wait()
|
|
return process.returncode
|
|
|
|
def main():
|
|
component = 'all'
|
|
if len(sys.argv) == 2:
|
|
component = sys.argv[1]
|
|
|
|
component_gyp_files = {
|
|
'all' : 'dart.gyp',
|
|
'runtime' : 'runtime/dart-runtime.gyp',
|
|
}
|
|
args = ['python', '-S', 'third_party/gyp/gyp_main.py',
|
|
'--depth=.', '-Itools/gyp/all.gypi',
|
|
component_gyp_files[component]]
|
|
|
|
if sys.platform == 'win32':
|
|
# Generate Visual Studio 2010 compatible files by default.
|
|
if not os.environ.get('GYP_MSVS_VERSION'):
|
|
args.extend(['-G', 'msvs_version=2010'])
|
|
|
|
sys.exit(execute(args))
|
|
|
|
if __name__ == '__main__':
|
|
main()
|