Lines Matching refs:target_dir
171 def _CopyRuntime2013(target_dir, source_dir, dll_pattern): argument
176 target = os.path.join(target_dir, dll)
181 def _CopyRuntime2015(target_dir, source_dir, dll_pattern, suffix): argument
186 target = os.path.join(target_dir, dll)
190 print 'Copying %s to %s...' % (ucrt_src_dir, target_dir)
193 ucrt_dst_file = os.path.join(target_dir, file_part)
195 _CopyRuntimeImpl(os.path.join(target_dir, 'ucrtbase' + suffix),
199 def _CopyRuntime(target_dir, source_dir, target_cpu, debug): argument
204 _CopyRuntime2015(target_dir, source_dir, '%s140' + suffix, suffix)
206 _CopyRuntime2013(target_dir, source_dir, 'msvc%s120' + suffix)
217 _CopyRuntimeImpl(os.path.join(target_dir, pgo_runtime_dll), source_x86)
221 _CopyRuntimeImpl(os.path.join(target_dir, pgo_runtime_dll),
249 def CopyDlls(target_dir, configuration, target_cpu): argument
266 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=False)
268 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=True)