Home | History | Annotate | Download | only in build

Lines Matching refs:target_dir

171 def _CopyRuntime2013(target_dir, source_dir, dll_pattern):
176 target = os.path.join(target_dir, dll)
181 def _CopyRuntime2015(target_dir, source_dir, dll_pattern, suffix):
186 target = os.path.join(target_dir, dll)
192 ucrt_dst_file = os.path.join(target_dir, file_part)
194 _CopyRuntimeImpl(os.path.join(target_dir, 'ucrtbase' + suffix),
198 def _CopyRuntime(target_dir, source_dir, target_cpu, debug):
203 _CopyRuntime2015(target_dir, source_dir, '%s140' + suffix, suffix)
205 _CopyRuntime2013(target_dir, source_dir, 'msvc%s120' + suffix)
216 _CopyRuntimeImpl(os.path.join(target_dir, pgo_runtime_dll), source_x86)
220 _CopyRuntimeImpl(os.path.join(target_dir, pgo_runtime_dll),
256 def CopyDlls(target_dir, configuration, target_cpu):
273 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=False)
275 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=True)