Lines Matching full:path
40 script_dir = os.path.dirname(os.path.realpath(__file__))
41 v8_root = os.path.abspath(os.path.join(script_dir, os.pardir))
43 sys.path.insert(0, os.path.join(v8_root, 'build', 'gyp', 'pylib'))
47 sys.path.insert(
48 1, os.path.abspath(os.path.join(v8_root, 'tools', 'generate_shim_headers')))
55 if not file_path or not os.path.exists(file_path):
61 e.filename = os.path.abspath(file_path)
73 var, os.path.abspath(file_path)
91 specified_includes.add(os.path.realpath(arg[2:]))
94 def AddInclude(path):
95 if os.path.realpath(path) not in specified_includes:
96 result.append(path)
99 AddInclude(os.path.join(v8_root, 'build', 'standalone.gypi'))
102 supplements = glob.glob(os.path.join(v8_root, '*', 'supplement.gypi'))
117 [sys.executable, os.path.join(script_dir, 'landmines.py')])
129 gyp_env_path = os.path.join(os.path.dirname(v8_root), 'v8.gyp_env')
146 # path separators even on Windows due to the use of shlex.split().
149 args.append(os.path.join(script_dir, 'all.gyp'))
157 args.append('--depth=' + os.path.relpath(v8_root))
173 for f in glob.glob(os.path.join(v8_root, 'out', 'Makefile.*')):