Lines Matching refs:target_cpu
199 def _CopyRuntime(target_dir, source_dir, target_cpu, debug):
214 if target_cpu == "x86":
218 elif target_cpu == "x64":
224 raise NotImplementedError("Unexpected target_cpu value:" + target_cpu)
257 def CopyDlls(target_dir, configuration, target_cpu):
261 target_cpu is one of 'x86' or 'x64'.
273 runtime_dir = x64_runtime if target_cpu == 'x64' else x86_runtime
274 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=False)
276 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=True)