summaryrefslogtreecommitdiff
path: root/tools/gyp_node
blob: f373312a3613104f72f187ebaa04e32e548ef566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
import glob
import os
import shlex
import sys

tool_dir = os.path.dirname(__file__)
node_root = os.path.normpath(os.path.join(tool_dir, os.pardir))

sys.path.insert(0, os.path.join(tool_dir, 'gyp', 'pylib'))
import gyp

# Directory within which we want all generated files (including Makefiles)
# to be written.
output_dir = os.path.join(os.path.abspath(node_root), 'out')


def run_gyp(args):
  rc = gyp.main(args)
  if rc != 0:
    print 'Error running GYP'
    sys.exit(rc)

if __name__ == '__main__':
  args = sys.argv[1:]
  args.append(os.path.join(tool_dir, 'all.gyp'))
  args.append('--depth=' + node_root)

  # Tell gyp to write the Makefiles into output_dir
  args.extend(['--generator-output', output_dir])

  # Tell make to write its output into the same dir
  args.extend(['-Goutput_dir=' + output_dir])

  args.append('-Dtarget_arch=x64')
  args.append('-Dcomponent=static_library')
  args.append('-Dlibrary=static_library')
  gyp_args = list(args)
  run_gyp(gyp_args)