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

Side by Side Diff: gyp/gpu.gypi

Issue 543363004: Add support for EGL on linux (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 3 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 | « gyp/gpu.gyp ('k') | include/gpu/gl/SkNativeGLContext.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 # Include this gypi to include all 'gpu' files 1 # Include this gypi to include all 'gpu' files
2 # The parent gyp/gypi file must define 2 # The parent gyp/gypi file must define
3 # 'skia_src_path' e.g. skia/trunk/src 3 # 'skia_src_path' e.g. skia/trunk/src
4 # 'skia_include_path' e.g. skia/trunk/include 4 # 'skia_include_path' e.g. skia/trunk/include
5 # 5 #
6 # The skia build defines these in common_variables.gypi 6 # The skia build defines these in common_variables.gypi
7 # 7 #
8 { 8 {
9 'variables': { 9 'variables': {
10 'skgpu_sources': [ 10 'skgpu_sources': [
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 '<(skia_src_path)/image/SkImage_Gpu.cpp', 290 '<(skia_src_path)/image/SkImage_Gpu.cpp',
291 '<(skia_src_path)/image/SkSurface_Gpu.cpp', 291 '<(skia_src_path)/image/SkSurface_Gpu.cpp',
292 292
293 '<(skia_src_path)/gpu/gl/SkGLContextHelper.cpp' 293 '<(skia_src_path)/gpu/gl/SkGLContextHelper.cpp'
294 ], 294 ],
295 'skgpu_native_gl_sources': [ 295 'skgpu_native_gl_sources': [
296 '<(skia_src_path)/gpu/gl/GrGLDefaultInterface_native.cpp', 296 '<(skia_src_path)/gpu/gl/GrGLDefaultInterface_native.cpp',
297 '<(skia_src_path)/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp', 297 '<(skia_src_path)/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp',
298 '<(skia_src_path)/gpu/gl/win/GrGLCreateNativeInterface_win.cpp', 298 '<(skia_src_path)/gpu/gl/win/GrGLCreateNativeInterface_win.cpp',
299 '<(skia_src_path)/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp', 299 '<(skia_src_path)/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp',
300 '<(skia_src_path)/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp',
300 '<(skia_src_path)/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp', 301 '<(skia_src_path)/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp',
301 '<(skia_src_path)/gpu/gl/android/GrGLCreateNativeInterface_android.cpp', 302 '<(skia_src_path)/gpu/gl/android/GrGLCreateNativeInterface_android.cpp',
302 303
303 # Sk files 304 # Sk files
304 '<(skia_include_path)/gpu/gl/SkNativeGLContext.h', 305 '<(skia_include_path)/gpu/gl/SkNativeGLContext.h',
305 '<(skia_src_path)/gpu/gl/mac/SkNativeGLContext_mac.cpp', 306 '<(skia_src_path)/gpu/gl/mac/SkNativeGLContext_mac.cpp',
306 '<(skia_src_path)/gpu/gl/nacl/SkNativeGLContext_nacl.cpp', 307 '<(skia_src_path)/gpu/gl/nacl/SkNativeGLContext_nacl.cpp',
307 '<(skia_src_path)/gpu/gl/win/SkNativeGLContext_win.cpp', 308 '<(skia_src_path)/gpu/gl/win/SkNativeGLContext_win.cpp',
308 '<(skia_src_path)/gpu/gl/unix/SkNativeGLContext_unix.cpp', 309 '<(skia_src_path)/gpu/gl/unix/SkNativeGLContext_unix.cpp',
309 '<(skia_src_path)/gpu/gl/android/SkNativeGLContext_android.cpp', 310 '<(skia_src_path)/gpu/gl/egl/SkNativeGLContext_egl.cpp',
310 '<(skia_src_path)/gpu/gl/iOS/SkNativeGLContext_iOS.mm', 311 '<(skia_src_path)/gpu/gl/iOS/SkNativeGLContext_iOS.mm',
311 ], 312 ],
312 'skgpu_mesa_gl_sources': [ 313 'skgpu_mesa_gl_sources': [
313 '<(skia_src_path)/gpu/gl/mesa/GrGLCreateMesaInterface.cpp', 314 '<(skia_src_path)/gpu/gl/mesa/GrGLCreateMesaInterface.cpp',
314 315
315 # Sk files 316 # Sk files
316 '<(skia_include_path)/gpu/gl/SkMesaGLContext.h', 317 '<(skia_include_path)/gpu/gl/SkMesaGLContext.h',
317 '<(skia_src_path)/gpu/gl/mesa/SkMesaGLContext.cpp', 318 '<(skia_src_path)/gpu/gl/mesa/SkMesaGLContext.cpp',
318 ], 319 ],
319 'skgpu_angle_gl_sources': [ 320 'skgpu_angle_gl_sources': [
(...skipping 30 matching lines...) Expand all
350 ], 351 ],
351 'skgpu_null_gl_sources': [ 352 'skgpu_null_gl_sources': [
352 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', 353 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp',
353 354
354 # Sk files 355 # Sk files
355 '<(skia_include_path)/gpu/gl/SkNullGLContext.h', 356 '<(skia_include_path)/gpu/gl/SkNullGLContext.h',
356 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 357 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
357 ], 358 ],
358 }, 359 },
359 } 360 }
OLDNEW
« no previous file with comments | « gyp/gpu.gyp ('k') | include/gpu/gl/SkNativeGLContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698