Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(750)

Side by Side Diff: Source/WebCore/PlatformEfl.cmake

Issue 13046002: Revert 146458 "[EFL][WebGL] Implement a common GraphicsSurface I..." (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1451/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/WebCore/platform/graphics/efl/GraphicsContext3DPrivate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 list(APPEND WebCore_INCLUDE_DIRECTORIES 1 list(APPEND WebCore_INCLUDE_DIRECTORIES
2 "${WEBCORE_DIR}/editing/atk" 2 "${WEBCORE_DIR}/editing/atk"
3 "${WEBCORE_DIR}/page/efl" 3 "${WEBCORE_DIR}/page/efl"
4 "${WEBCORE_DIR}/platform/cairo" 4 "${WEBCORE_DIR}/platform/cairo"
5 "${WEBCORE_DIR}/platform/efl" 5 "${WEBCORE_DIR}/platform/efl"
6 "${WEBCORE_DIR}/platform/graphics/cairo" 6 "${WEBCORE_DIR}/platform/graphics/cairo"
7 "${WEBCORE_DIR}/platform/graphics/efl" 7 "${WEBCORE_DIR}/platform/graphics/efl"
8 "${WEBCORE_DIR}/platform/graphics/freetype" 8 "${WEBCORE_DIR}/platform/graphics/freetype"
9 "${WEBCORE_DIR}/platform/graphics/harfbuzz/" 9 "${WEBCORE_DIR}/platform/graphics/harfbuzz/"
10 "${WEBCORE_DIR}/platform/graphics/harfbuzz/ng" 10 "${WEBCORE_DIR}/platform/graphics/harfbuzz/ng"
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 ) 290 )
291 endif () 291 endif ()
292 292
293 if (WTF_USE_3D_GRAPHICS) 293 if (WTF_USE_3D_GRAPHICS)
294 set(WTF_USE_OPENGL 1) 294 set(WTF_USE_OPENGL 1)
295 add_definitions(-DWTF_USE_OPENGL=1) 295 add_definitions(-DWTF_USE_OPENGL=1)
296 296
297 list(APPEND WebCore_INCLUDE_DIRECTORIES 297 list(APPEND WebCore_INCLUDE_DIRECTORIES
298 "${WEBCORE_DIR}/platform/graphics/opengl" 298 "${WEBCORE_DIR}/platform/graphics/opengl"
299 "${WEBCORE_DIR}/platform/graphics/surfaces" 299 "${WEBCORE_DIR}/platform/graphics/surfaces"
300 "${WEBCORE_DIR}/platform/graphics/surfaces/efl"
301 "${WEBCORE_DIR}/platform/graphics/surfaces/glx" 300 "${WEBCORE_DIR}/platform/graphics/surfaces/glx"
302 "${WEBCORE_DIR}/platform/graphics/texmap" 301 "${WEBCORE_DIR}/platform/graphics/texmap"
303 ) 302 )
304 303
305 if (WTF_USE_EGL) 304 if (WTF_USE_EGL)
306 list(APPEND WebCore_INCLUDE_DIRECTORIES 305 list(APPEND WebCore_INCLUDE_DIRECTORIES
307 ${EGL_INCLUDE_DIR} 306 ${EGL_INCLUDE_DIR}
308 "${WEBCORE_DIR}/platform/graphics/surfaces/egl" 307 "${WEBCORE_DIR}/platform/graphics/surfaces/egl"
309 ) 308 )
310 endif () 309 endif ()
311 310
312 list(APPEND WebCore_SOURCES 311 list(APPEND WebCore_SOURCES
313 platform/graphics/cairo/DrawingBufferCairo.cpp 312 platform/graphics/cairo/DrawingBufferCairo.cpp
314 platform/graphics/efl/GraphicsContext3DEfl.cpp 313 platform/graphics/efl/GraphicsContext3DEfl.cpp
315 platform/graphics/efl/GraphicsContext3DPrivate.cpp 314 platform/graphics/efl/GraphicsContext3DPrivate.cpp
316 platform/graphics/opengl/Extensions3DOpenGLCommon.cpp 315 platform/graphics/opengl/Extensions3DOpenGLCommon.cpp
317 platform/graphics/opengl/GLPlatformContext.cpp 316 platform/graphics/opengl/GLPlatformContext.cpp
318 platform/graphics/opengl/GLPlatformSurface.cpp 317 platform/graphics/opengl/GLPlatformSurface.cpp
319 platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp 318 platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp
319 platform/graphics/surfaces/GLTransportSurface.cpp
320 platform/graphics/surfaces/GraphicsSurface.cpp 320 platform/graphics/surfaces/GraphicsSurface.cpp
321 platform/graphics/surfaces/efl/GLTransportSurface.cpp
322 platform/graphics/surfaces/efl/GraphicsSurfaceCommon.cpp
323 platform/graphics/surfaces/glx/X11Helper.cpp 321 platform/graphics/surfaces/glx/X11Helper.cpp
324 platform/graphics/texmap/TextureMapperGL.cpp 322 platform/graphics/texmap/TextureMapperGL.cpp
325 platform/graphics/texmap/TextureMapperShaderProgram.cpp 323 platform/graphics/texmap/TextureMapperShaderProgram.cpp
326 ) 324 )
327 325
328 if (WTF_USE_EGL) 326 if (WTF_USE_EGL)
329 list(APPEND WebCore_SOURCES 327 list(APPEND WebCore_SOURCES
330 platform/graphics/surfaces/egl/EGLConfigSelector.cpp 328 platform/graphics/surfaces/egl/EGLConfigSelector.cpp
331 platform/graphics/surfaces/egl/EGLContext.cpp 329 platform/graphics/surfaces/egl/EGLContext.cpp
332 platform/graphics/surfaces/egl/EGLSurface.cpp 330 platform/graphics/surfaces/egl/EGLSurface.cpp
333 ) 331 )
334 else () 332 else ()
335 list(APPEND WebCore_SOURCES 333 list(APPEND WebCore_SOURCES
336 platform/graphics/surfaces/glx/GLXContext.cpp 334 platform/graphics/surfaces/glx/GLXContext.cpp
337 platform/graphics/surfaces/glx/GLXSurface.cpp 335 platform/graphics/surfaces/glx/GLXSurface.cpp
336 platform/graphics/surfaces/glx/GraphicsSurfaceGLX.cpp
338 ) 337 )
339 endif () 338 endif ()
340 339
341 if (WTF_USE_OPENGL_ES_2) 340 if (WTF_USE_OPENGL_ES_2)
342 list(APPEND WebCore_SOURCES 341 list(APPEND WebCore_SOURCES
343 platform/graphics/opengl/Extensions3DOpenGLES.cpp 342 platform/graphics/opengl/Extensions3DOpenGLES.cpp
344 platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp 343 platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp
345 ) 344 )
346 else () 345 else ()
347 list(APPEND WebCore_SOURCES 346 list(APPEND WebCore_SOURCES
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 392
394 if (ENABLE_ACCESSIBILITY) 393 if (ENABLE_ACCESSIBILITY)
395 list(APPEND WebCore_INCLUDE_DIRECTORIES 394 list(APPEND WebCore_INCLUDE_DIRECTORIES
396 "${WEBCORE_DIR}/accessibility/atk" 395 "${WEBCORE_DIR}/accessibility/atk"
397 ${ATK_INCLUDE_DIRS} 396 ${ATK_INCLUDE_DIRS}
398 ) 397 )
399 list(APPEND WebCore_LIBRARIES 398 list(APPEND WebCore_LIBRARIES
400 ${ATK_LIBRARIES} 399 ${ATK_LIBRARIES}
401 ) 400 )
402 endif () 401 endif ()
OLDNEW
« no previous file with comments | « no previous file | Source/WebCore/platform/graphics/efl/GraphicsContext3DPrivate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698