Skip to content

Commit 0bcf881

Browse files
WizardCMRytoEX
authored andcommitted
cmake: Don't copy legacy, unused Chromium file
While CEF continues to ship & read this up to and including in CEF 6834, it hasn't actually been used since Chromium 66, so we can safely remove it without causing regressions in 5060 or 6533. https://bitbucket.org/chromiumembedded/cef/commits/719f423e7030540f9b334d12e2ef9f82fc759a36
1 parent 9664354 commit 0bcf881

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

cmake/linux/helpers.cmake

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,8 @@ function(set_target_properties_obs target)
174174
COMMAND
175175
"${CMAKE_COMMAND}" -E copy_if_different "${imported_location}" "${cef_location}/chrome-sandbox"
176176
"${cef_location}/libEGL.so" "${cef_location}/libGLESv2.so" "${cef_location}/libvk_swiftshader.so"
177-
"${cef_location}/libvulkan.so.1" "${cef_location}/snapshot_blob.bin"
178-
"${cef_location}/v8_context_snapshot.bin" "${cef_location}/vk_swiftshader_icd.json"
179-
"${OBS_OUTPUT_DIR}/$<CONFIG>/${OBS_PLUGIN_DESTINATION}/"
177+
"${cef_location}/libvulkan.so.1" "${cef_location}/v8_context_snapshot.bin"
178+
"${cef_location}/vk_swiftshader_icd.json" "${OBS_OUTPUT_DIR}/$<CONFIG>/${OBS_PLUGIN_DESTINATION}/"
180179
COMMAND
181180
"${CMAKE_COMMAND}" -E copy_if_different "${cef_root_location}/Resources/chrome_100_percent.pak"
182181
"${cef_root_location}/Resources/chrome_200_percent.pak" "${cef_root_location}/Resources/icudtl.dat"
@@ -195,7 +194,6 @@ function(set_target_properties_obs target)
195194
"${cef_location}/libGLESv2.so"
196195
"${cef_location}/libvk_swiftshader.so"
197196
"${cef_location}/libvulkan.so.1"
198-
"${cef_location}/snapshot_blob.bin"
199197
"${cef_location}/v8_context_snapshot.bin"
200198
"${cef_location}/vk_swiftshader_icd.json"
201199
"${cef_root_location}/Resources/chrome_100_percent.pak"

cmake/windows/helpers.cmake

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ function(set_target_properties_obs target)
109109
COMMAND "${CMAKE_COMMAND}" -E make_directory "${OBS_OUTPUT_DIR}/$<CONFIG>/${target_destination}"
110110
COMMAND
111111
"${CMAKE_COMMAND}" -E copy_if_different "${imported_location}" "${cef_location}/chrome_elf.dll"
112-
"${cef_location}/libEGL.dll" "${cef_location}/libGLESv2.dll" "${cef_location}/snapshot_blob.bin"
113-
"${cef_location}/v8_context_snapshot.bin" "${OBS_OUTPUT_DIR}/$<CONFIG>/${target_destination}"
112+
"${cef_location}/libEGL.dll" "${cef_location}/libGLESv2.dll" "${cef_location}/v8_context_snapshot.bin"
113+
"${OBS_OUTPUT_DIR}/$<CONFIG>/${target_destination}"
114114
COMMAND
115115
"${CMAKE_COMMAND}" -E copy_if_different "${cef_root_location}/Resources/chrome_100_percent.pak"
116116
"${cef_root_location}/Resources/chrome_200_percent.pak" "${cef_root_location}/Resources/icudtl.dat"
@@ -127,7 +127,6 @@ function(set_target_properties_obs target)
127127
"${cef_location}/chrome_elf.dll"
128128
"${cef_location}/libEGL.dll"
129129
"${cef_location}/libGLESv2.dll"
130-
"${cef_location}/snapshot_blob.bin"
131130
"${cef_location}/v8_context_snapshot.bin"
132131
"${cef_root_location}/Resources/chrome_100_percent.pak"
133132
"${cef_root_location}/Resources/chrome_200_percent.pak"

0 commit comments

Comments
 (0)