mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
win: Ship d3dcompiler_47.dll on ARM64 (fixes #3515)
Use the same file from the Windows SDK as Chromium on all architectures ("$windows_sdk_path/Redist/D3D/$target_cpu/d3dcompiler_47.dll").
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -887,6 +887,7 @@ if platform == 'windows':
|
||||
# yapf: disable
|
||||
binaries = [
|
||||
{'path': 'chrome_elf.dll'},
|
||||
{'path': 'd3dcompiler_47.dll'},
|
||||
{'path': libcef_dll},
|
||||
{'path': 'libEGL.dll'},
|
||||
{'path': 'libGLESv2.dll'},
|
||||
@@ -959,9 +960,6 @@ if platform == 'windows':
|
||||
valid_build_dir = build_dir
|
||||
dst_dir = os.path.join(output_dir, 'Debug')
|
||||
copy_files_list(build_dir, dst_dir, binaries)
|
||||
copy_files(
|
||||
os.path.join(script_dir, 'distrib/win/%s/*.dll' % binary_arch),
|
||||
dst_dir, options.quiet)
|
||||
|
||||
if not options.nosymbols:
|
||||
# create the symbol output directory
|
||||
@@ -982,9 +980,6 @@ if platform == 'windows':
|
||||
valid_build_dir = build_dir
|
||||
dst_dir = os.path.join(output_dir, 'Release')
|
||||
copy_files_list(build_dir, dst_dir, binaries)
|
||||
copy_files(
|
||||
os.path.join(script_dir, 'distrib/win/%s/*.dll' % binary_arch),
|
||||
dst_dir, options.quiet)
|
||||
|
||||
if not options.nosymbols:
|
||||
# create the symbol output directory
|
||||
|
Reference in New Issue
Block a user