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

Side by Side Diff: gyp/gpu.gypi

Issue 1306823003: skia: add ability to load command_buffer_gles2 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: delete the display Created 5 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
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Include this gypi to include all 'gpu' files 5 # Include this gypi to include all 'gpu' files
6 # The parent gyp/gypi file must define 6 # The parent gyp/gypi file must define
7 # 'skia_src_path' e.g. skia/trunk/src 7 # 'skia_src_path' e.g. skia/trunk/src
8 # 'skia_include_path' e.g. skia/trunk/include 8 # 'skia_include_path' e.g. skia/trunk/include
9 # 9 #
10 # The skia build defines these in common_variables.gypi 10 # The skia build defines these in common_variables.gypi
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 '<(skia_src_path)/gpu/gl/mesa/SkMesaGLContext.cpp', 427 '<(skia_src_path)/gpu/gl/mesa/SkMesaGLContext.cpp',
428 '<(skia_src_path)/gpu/gl/mesa/SkMesaGLContext.h', 428 '<(skia_src_path)/gpu/gl/mesa/SkMesaGLContext.h',
429 ], 429 ],
430 'skgpu_angle_gl_sources': [ 430 'skgpu_angle_gl_sources': [
431 '<(skia_src_path)/gpu/gl/angle/GrGLCreateANGLEInterface.cpp', 431 '<(skia_src_path)/gpu/gl/angle/GrGLCreateANGLEInterface.cpp',
432 432
433 # Sk files 433 # Sk files
434 '<(skia_include_path)/gpu/gl/angle/SkANGLEGLContext.h', 434 '<(skia_include_path)/gpu/gl/angle/SkANGLEGLContext.h',
435 '<(skia_src_path)/gpu/gl/angle/SkANGLEGLContext.cpp', 435 '<(skia_src_path)/gpu/gl/angle/SkANGLEGLContext.cpp',
436 ], 436 ],
437 'skgpu_command_buffer_gl_sources': [
438 # Sk files
439 '<(skia_include_path)/gpu/gl/command_buffer/SkCommandBufferGLContext.h',
440 '<(skia_src_path)/gpu/gl/command_buffer/SkCommandBufferGLContext.cpp',
441 ],
437 'skgpu_debug_gl_sources': [ 442 'skgpu_debug_gl_sources': [
438 '<(skia_src_path)/gpu/gl/debug/GrGLCreateDebugInterface.cpp', 443 '<(skia_src_path)/gpu/gl/debug/GrGLCreateDebugInterface.cpp',
439 '<(skia_src_path)/gpu/gl/debug/GrFakeRefObj.h', 444 '<(skia_src_path)/gpu/gl/debug/GrFakeRefObj.h',
440 '<(skia_src_path)/gpu/gl/debug/GrBufferObj.h', 445 '<(skia_src_path)/gpu/gl/debug/GrBufferObj.h',
441 '<(skia_src_path)/gpu/gl/debug/GrBufferObj.cpp', 446 '<(skia_src_path)/gpu/gl/debug/GrBufferObj.cpp',
442 '<(skia_src_path)/gpu/gl/debug/GrFBBindableObj.h', 447 '<(skia_src_path)/gpu/gl/debug/GrFBBindableObj.h',
443 '<(skia_src_path)/gpu/gl/debug/GrRenderBufferObj.h', 448 '<(skia_src_path)/gpu/gl/debug/GrRenderBufferObj.h',
444 '<(skia_src_path)/gpu/gl/debug/GrTextureObj.h', 449 '<(skia_src_path)/gpu/gl/debug/GrTextureObj.h',
445 '<(skia_src_path)/gpu/gl/debug/GrTextureObj.cpp', 450 '<(skia_src_path)/gpu/gl/debug/GrTextureObj.cpp',
446 '<(skia_src_path)/gpu/gl/debug/GrTextureUnitObj.h', 451 '<(skia_src_path)/gpu/gl/debug/GrTextureUnitObj.h',
(...skipping 12 matching lines...) Expand all
459 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.cpp', 464 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.cpp',
460 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.h', 465 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.h',
461 ], 466 ],
462 'skgpu_null_gl_sources': [ 467 'skgpu_null_gl_sources': [
463 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', 468 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp',
464 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 469 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
465 '<(skia_include_path)/gpu/gl/SkNullGLContext.h', 470 '<(skia_include_path)/gpu/gl/SkNullGLContext.h',
466 ], 471 ],
467 }, 472 },
468 } 473 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698