Lines Matching refs:path
6 script_dir = os.path.dirname(__file__)
7 node_root = os.path.normpath(os.path.join(script_dir, os.pardir))
9 sys.path.insert(0, os.path.join(node_root, 'tools', 'gyp', 'pylib'))
14 output_dir = os.path.join(os.path.abspath(node_root), 'out')
18 # On msvs it will crash if it gets an absolute path.
19 # On Mac/make it will crash if it doesn't get an absolute path.
20 a_path = node_root if sys.platform == 'win32' else os.path.abspath(node_root)
21 args.append(os.path.join(a_path, 'node.gyp'))
22 common_fn = os.path.join(a_path, 'common.gypi')
23 options_fn = os.path.join(a_path, 'config.gypi')
25 if os.path.exists(common_fn):
28 if os.path.exists(options_fn):