Home | History | Annotate | Download | only in build

Lines Matching refs:join

16 chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir))
18 sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib'))
19 json_data_file = os.path.join(script_dir, 'win_toolchain.json')
65 os.environ['GYP_DEFINES'] = ' '.join('%s=%s' % (k, pipes.quote(str(v)))
70 runtime_path = os.path.pathsep.join(vs_runtime_dll_dirs)
128 version_as_year, ', '.join(year_to_version.keys())))
136 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')
192 ucrt_dst_file = os.path.join(target_dir, file_part)
194 _CopyRuntimeImpl(os.path.join(target_dir, 'ucrtbase' + suffix),
195 os.path.join(source_dir, 'ucrtbase' + suffix))
209 pgo_x86_runtime_dir = os.path.join(os.environ.get('GYP_MSVS_OVERRIDE_PATH'),
211 pgo_x64_runtime_dir = os.path.join(pgo_x86_runtime_dir, 'amd64')
214 source_x86 = os.path.join(pgo_x86_runtime_dir, pgo_runtime_dll)
216 _CopyRuntimeImpl(os.path.join(target_dir, pgo_runtime_dll), source_x86)
218 source_x64 = os.path.join(pgo_x64_runtime_dir, pgo_runtime_dll)
220 _CopyRuntimeImpl(os.path.join(target_dir, pgo_runtime_dll),
237 out_debug = os.path.join(output_dir, 'Debug')
238 out_debug_nacl64 = os.path.join(output_dir, 'Debug', 'x64')
239 out_release = os.path.join(output_dir, 'Release')
240 out_release_nacl64 = os.path.join(output_dir, 'Release', 'x64')
241 out_debug_x64 = os.path.join(output_dir, 'Debug_x64')
242 out_release_x64 = os.path.join(output_dir, 'Release_x64')
327 os.path.join(depot_tools_path,
366 os.path.pathsep.join(runtime_dll_dirs or ['None']))
376 print >>sys.stderr, 'Expected one of: %s' % ', '.join(commands)