< prev index next >

modules/javafx.web/src/main/native/Source/WebCore/PlatformJava.cmake

Print this page




 319     platform/graphics/win
 320 
 321     platform/text/transcoder
 322 
 323     rendering/style
 324     rendering/svg
 325 
 326     svg/animation
 327     svg/graphics
 328     svg/properties
 329 
 330     svg/graphics/filters
 331 )
 332 
 333 WEBKIT_CREATE_FORWARDING_HEADERS(WebCore DIRECTORIES ${WebCore_FORWARDING_HEADERS_DIRECTORIES})
 334 
 335 if (WIN32)
 336     list(APPEND WebCore_SOURCES
 337       platform/win/SystemInfo.cpp
 338     )




 339 elseif(APPLE)
 340     list(APPEND WebCore_INCLUDE_DIRECTORIES
 341         ${WEBCORE_DIR}/icu
 342         ${WEBCORE_DIR}/platform/mac
 343     )
 344     list(APPEND WebCore_SOURCES
 345         editing/SmartReplaceCF.cpp
 346 #   platform/cf/FileSystemCF.cpp
 347         platform/VNodeTracker.cpp
 348         platform/cf/SharedBufferCF.cpp
 349         platform/cf/URLCF.cpp
 350         platform/cf/CFURLExtras.cpp
 351     )
 352     find_library(ACCELERATE_LIBRARY accelerate)
 353     list(APPEND WebCore_LIBRARIES
 354         ${ACCELERATE_LIBRARY}
 355     )
 356 elseif(UNIX)
 357     list(APPEND WebCore_SOURCES
 358       platform/linux/MemoryPressureHandlerLinux.cpp




 319     platform/graphics/win
 320 
 321     platform/text/transcoder
 322 
 323     rendering/style
 324     rendering/svg
 325 
 326     svg/animation
 327     svg/graphics
 328     svg/properties
 329 
 330     svg/graphics/filters
 331 )
 332 
 333 WEBKIT_CREATE_FORWARDING_HEADERS(WebCore DIRECTORIES ${WebCore_FORWARDING_HEADERS_DIRECTORIES})
 334 
 335 if (WIN32)
 336     list(APPEND WebCore_SOURCES
 337       platform/win/SystemInfo.cpp
 338     )
 339     # Adds version information to jfxwebkit.dll created by Gradle build, see JDK-8166265
 340     list(APPEND WebCore_LIBRARIES
 341         ${CMAKE_BINARY_DIR}/WebCore/obj/version.res
 342     )
 343 elseif(APPLE)
 344     list(APPEND WebCore_INCLUDE_DIRECTORIES
 345         ${WEBCORE_DIR}/icu
 346         ${WEBCORE_DIR}/platform/mac
 347     )
 348     list(APPEND WebCore_SOURCES
 349         editing/SmartReplaceCF.cpp
 350 #   platform/cf/FileSystemCF.cpp
 351         platform/VNodeTracker.cpp
 352         platform/cf/SharedBufferCF.cpp
 353         platform/cf/URLCF.cpp
 354         platform/cf/CFURLExtras.cpp
 355     )
 356     find_library(ACCELERATE_LIBRARY accelerate)
 357     list(APPEND WebCore_LIBRARIES
 358         ${ACCELERATE_LIBRARY}
 359     )
 360 elseif(UNIX)
 361     list(APPEND WebCore_SOURCES
 362       platform/linux/MemoryPressureHandlerLinux.cpp


< prev index next >