diff --git a/cmake/cef_variables.cmake.in b/cmake/cef_variables.cmake.in index b3910747a..6ac0a9b5d 100644 --- a/cmake/cef_variables.cmake.in +++ b/cmake/cef_variables.cmake.in @@ -361,14 +361,6 @@ if(OS_MAC) list(APPEND CEF_COMPILER_DEFINES CEF_USE_SANDBOX # Used by apps to test if the sandbox is enabled ) - - list(APPEND CEF_STANDARD_LIBS - -lsandbox - ) - - # CEF sandbox library paths. - set(CEF_SANDBOX_LIB_DEBUG "${CEF_BINARY_DIR_DEBUG}/cef_sandbox.a") - set(CEF_SANDBOX_LIB_RELEASE "${CEF_BINARY_DIR_RELEASE}/cef_sandbox.a") endif() # CEF Helper app suffixes. diff --git a/tests/cefclient/CMakeLists.txt.in b/tests/cefclient/CMakeLists.txt.in index 75951296c..33ea4f987 100644 --- a/tests/cefclient/CMakeLists.txt.in +++ b/tests/cefclient/CMakeLists.txt.in @@ -189,11 +189,6 @@ if(OS_MAC) set(EXECUTABLE_NAME "${CEF_TARGET}") set(PRODUCT_NAME "${CEF_TARGET}") - if(USE_SANDBOX) - # Logical target used to link the cef_sandbox library. - ADD_LOGICAL_TARGET("cef_sandbox_lib" "${CEF_SANDBOX_LIB_DEBUG}" "${CEF_SANDBOX_LIB_RELEASE}") - endif() - # Main app bundle target. add_executable(${CEF_TARGET} MACOSX_BUNDLE ${CEFCLIENT_RESOURCES_SRCS} ${CEFCLIENT_SRCS}) SET_EXECUTABLE_TARGET_PROPERTIES(${CEF_TARGET}) @@ -246,10 +241,6 @@ if(OS_MAC) OUTPUT_NAME ${_helper_output_name} ) - if(USE_SANDBOX) - target_link_libraries(${_helper_target} cef_sandbox_lib) - endif() - # Add the Helper as a dependency of the main executable target. add_dependencies(${CEF_TARGET} "${_helper_target}") diff --git a/tests/cefsimple/CMakeLists.txt.in b/tests/cefsimple/CMakeLists.txt.in index 623b50c72..6a2ef1dd7 100644 --- a/tests/cefsimple/CMakeLists.txt.in +++ b/tests/cefsimple/CMakeLists.txt.in @@ -105,11 +105,6 @@ if(OS_MAC) set(EXECUTABLE_NAME "${CEF_TARGET}") set(PRODUCT_NAME "${CEF_TARGET}") - if(USE_SANDBOX) - # Logical target used to link the cef_sandbox library. - ADD_LOGICAL_TARGET("cef_sandbox_lib" "${CEF_SANDBOX_LIB_DEBUG}" "${CEF_SANDBOX_LIB_RELEASE}") - endif() - # Main app bundle target. add_executable(${CEF_TARGET} MACOSX_BUNDLE ${CEFSIMPLE_RESOURCES_SRCS} ${CEFSIMPLE_SRCS}) SET_EXECUTABLE_TARGET_PROPERTIES(${CEF_TARGET}) @@ -162,10 +157,6 @@ if(OS_MAC) OUTPUT_NAME ${_helper_output_name} ) - if(USE_SANDBOX) - target_link_libraries(${_helper_target} cef_sandbox_lib) - endif() - # Add the Helper as a dependency of the main executable target. add_dependencies(${CEF_TARGET} "${_helper_target}") diff --git a/tests/ceftests/CMakeLists.txt.in b/tests/ceftests/CMakeLists.txt.in index 5609ce071..d839e4c79 100644 --- a/tests/ceftests/CMakeLists.txt.in +++ b/tests/ceftests/CMakeLists.txt.in @@ -136,11 +136,6 @@ if(OS_MAC) set(EXECUTABLE_NAME "${CEF_TARGET}") set(PRODUCT_NAME "${CEF_TARGET}") - if(USE_SANDBOX) - # Logical target used to link the cef_sandbox library. - ADD_LOGICAL_TARGET("cef_sandbox_lib" "${CEF_SANDBOX_LIB_DEBUG}" "${CEF_SANDBOX_LIB_RELEASE}") - endif() - # Main app bundle target. add_executable(${CEF_TARGET} MACOSX_BUNDLE ${UNITTESTS_RESOURCES_SRCS} ${UNITTESTS_SRCS}) SET_EXECUTABLE_TARGET_PROPERTIES(${CEF_TARGET}) @@ -193,10 +188,6 @@ if(OS_MAC) OUTPUT_NAME ${_helper_output_name} ) - if(USE_SANDBOX) - target_link_libraries(${_helper_target} cef_sandbox_lib) - endif() - # Add the Helper as a dependency of the main executable target. add_dependencies(${CEF_TARGET} "${_helper_target}")