Home | History | Annotate | Download | only in build

Lines Matching refs:target_cpu

198 def _CopyRuntime(target_dir, source_dir, target_cpu, debug):
213 if target_cpu == "x86":
217 elif target_cpu == "x64":
223 raise NotImplementedError("Unexpected target_cpu value:" + target_cpu)
256 def CopyDlls(target_dir, configuration, target_cpu):
260 target_cpu is one of 'x86' or 'x64'.
272 runtime_dir = x64_runtime if target_cpu == 'x64' else x86_runtime
273 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=False)
275 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=True)