Merge pull request #28 from brightray/vendor-gyp

Include gyp as a submodule
This commit is contained in:
Adam Roben
2013-08-23 04:52:20 -07:00
4 changed files with 6 additions and 5 deletions

View File

@@ -1,3 +1,6 @@
[submodule "vendor/libchromiumcontent"]
path = vendor/libchromiumcontent
url = https://github.com/brightray/libchromiumcontent
[submodule "vendor/gyp"]
path = vendor/gyp
url = https://github.com/svn2github/gyp

View File

@@ -14,7 +14,6 @@ sample application written using Brightray.
### Prerequisites
* Python 2.7
* gyp
* Linux:
* Clang 3.0
* Mac:

View File

@@ -6,9 +6,7 @@ import sys
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
GYP = {
'win32': 'gyp.bat',
}.get(sys.platform, 'gyp')
GYP = os.path.join(SOURCE_ROOT, 'vendor', 'gyp', 'gyp_main.py')
def main():
@@ -17,7 +15,7 @@ def main():
def run_gyp():
return subprocess.call([GYP, '--depth', '.', 'brightray.gyp'])
return subprocess.call([sys.executable, GYP, '--depth', '.', 'brightray.gyp'])
def build():

1
brightray/vendor/gyp vendored Submodule

Submodule brightray/vendor/gyp added at 6633baab29