Make tools/gypdart independent of the directory from which it is called.

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
This commit is contained in:
ricow@google.com 2015-03-23 17:43:59 +00:00
parent 5c9110841e
commit 7211ecb704

View file

@ -12,8 +12,11 @@ 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)
process = subprocess.Popen(args, cwd=DART_ROOT)
process.wait()
return process.returncode
@ -23,11 +26,11 @@ def main():
component = sys.argv[1]
component_gyp_files = {
'all' : 'dart/dart.gyp',
'runtime' : 'dart/runtime/dart-runtime.gyp',
'all' : 'dart.gyp',
'runtime' : 'runtime/dart-runtime.gyp',
}
args = ['python', '-S', 'dart/third_party/gyp/gyp_main.py',
'--depth=dart', '-Idart/tools/gyp/all.gypi',
args = ['python', '-S', 'third_party/gyp/gyp_main.py',
'--depth=.', '-Itools/gyp/all.gypi',
component_gyp_files[component]]
if sys.platform == 'win32':