diff options
author | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-26 04:08:04 +0000 |
---|---|---|
committer | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-26 04:08:04 +0000 |
commit | d7cf393aac07d1db221d3899b62098bcd26e2fd0 (patch) | |
tree | 5d009c371b420fe8a1a312c0b95dd3912b4bac3d /gpu/gpu.gyp | |
parent | abb786b1feaabd3318a436fac1245d978581fad1 (diff) | |
download | chromium_src-d7cf393aac07d1db221d3899b62098bcd26e2fd0.zip chromium_src-d7cf393aac07d1db221d3899b62098bcd26e2fd0.tar.gz chromium_src-d7cf393aac07d1db221d3899b62098bcd26e2fd0.tar.bz2 |
Factor out code from WebGraphicsContext3DInProcessImpl
Move the internal GLInProcessContext class to gpu/command_buffer/client.
This works towards these goals:
- Unifying the WGC3D impls to be able to have one unified class that is simply
a shim from WGC3D to GLES2
- Factor out the in-process version so that non-webkit code can use it without depending on webkit
TBR=jamesr@chromium.org, piman@chromium.org
Review URL: https://codereview.chromium.org/16851003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208612 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/gpu.gyp')
-rw-r--r-- | gpu/gpu.gyp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp index 687e02a..35e771e 100644 --- a/gpu/gpu.gyp +++ b/gpu/gpu.gyp @@ -16,8 +16,10 @@ 'type': '<(component)', 'dependencies': [ '../base/base.gyp:base', + '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', '../third_party/khronos/khronos.gyp:khronos_headers', '../ui/gl/gl.gyp:gl', + '../ui/ui.gyp:ui', 'command_buffer/command_buffer.gyp:gles2_utils', 'gles2_cmd_helper', ], @@ -26,6 +28,8 @@ ], 'sources': [ '<@(gles2_implementation_source_files)', + 'command_buffer/client/gl_in_process_context.h', + 'command_buffer/client/gl_in_process_context.cc', ], # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 'msvs_disabled_warnings': [4267, ], |