• Home
  • Raw
  • Download

Lines Matching refs:join

17 chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir))
19 sys.path.insert(1, os.path.join(chrome_src, 'tools'))
20 sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib'))
21 json_data_file = os.path.join(script_dir, 'win_toolchain.json')
67 os.environ['GYP_DEFINES'] = ' '.join('%s=%s' % (k, pipes.quote(str(v)))
72 runtime_path = os.path.pathsep.join(vs_runtime_dll_dirs)
130 version_as_year, ', '.join(year_to_version.keys())))
138 path = os.path.normpath(os.path.join(path, '..', '..'))
176 target = os.path.join(target_dir, dll)
177 source = os.path.join(source_dir, dll)
186 target = os.path.join(target_dir, dll)
187 source = os.path.join(source_dir, dll)
189 ucrt_src_dir = os.path.join(source_dir, 'api-ms-win-*.dll')
193 ucrt_dst_file = os.path.join(target_dir, file_part)
195 _CopyRuntimeImpl(os.path.join(target_dir, 'ucrtbase' + suffix),
196 os.path.join(source_dir, 'ucrtbase' + suffix))
210 pgo_x86_runtime_dir = os.path.join(os.environ.get('GYP_MSVS_OVERRIDE_PATH'),
212 pgo_x64_runtime_dir = os.path.join(pgo_x86_runtime_dir, 'amd64')
215 source_x86 = os.path.join(pgo_x86_runtime_dir, pgo_runtime_dll)
217 _CopyRuntimeImpl(os.path.join(target_dir, pgo_runtime_dll), source_x86)
219 source_x64 = os.path.join(pgo_x64_runtime_dir, pgo_runtime_dll)
221 _CopyRuntimeImpl(os.path.join(target_dir, pgo_runtime_dll),
238 out_debug = os.path.join(output_dir, 'Debug')
239 out_release = os.path.join(output_dir, 'Release')
240 out_debug_x64 = os.path.join(output_dir, 'Debug_x64')
241 out_release_x64 = os.path.join(output_dir, 'Release_x64')
316 os.path.join(depot_tools_path,
355 os.path.pathsep.join(runtime_dll_dirs or ['None']))
365 print >>sys.stderr, 'Expected one of: %s' % ', '.join(commands)