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

Side by Side Diff: ui/gl/gl.gyp

Issue 10543125: gpu: Add support for GLX_EXT_texture_from_pixmap extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove .gitmodules change. Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'targets': [ 10 'targets': [
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'gl_context_linux.cc', 46 'gl_context_linux.cc',
47 'gl_context_mac.mm', 47 'gl_context_mac.mm',
48 'gl_context_osmesa.cc', 48 'gl_context_osmesa.cc',
49 'gl_context_osmesa.h', 49 'gl_context_osmesa.h',
50 'gl_context_stub.cc', 50 'gl_context_stub.cc',
51 'gl_context_stub.h', 51 'gl_context_stub.h',
52 'gl_context_win.cc', 52 'gl_context_win.cc',
53 'gl_export.h', 53 'gl_export.h',
54 'gl_fence.cc', 54 'gl_fence.cc',
55 'gl_fence.h', 55 'gl_fence.h',
56 'gl_image.cc',
57 'gl_image.h',
58 'gl_image_android.cc',
59 'gl_image_linux.cc',
60 'gl_image_mac.cc',
61 'gl_image_stub.cc',
62 'gl_image_stub.h',
63 'gl_image_win.cc',
56 'gl_implementation.cc', 64 'gl_implementation.cc',
57 'gl_implementation.h', 65 'gl_implementation.h',
58 'gl_implementation_android.cc', 66 'gl_implementation_android.cc',
59 'gl_implementation_linux.cc', 67 'gl_implementation_linux.cc',
60 'gl_implementation_mac.cc', 68 'gl_implementation_mac.cc',
61 'gl_implementation_win.cc', 69 'gl_implementation_win.cc',
62 'gl_interface.cc', 70 'gl_interface.cc',
63 'gl_interface.h', 71 'gl_interface.h',
64 'gl_share_group.cc', 72 'gl_share_group.cc',
65 'gl_share_group.h', 73 'gl_share_group.h',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', 142 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h',
135 ], 143 ],
136 'include_dirs': [ 144 'include_dirs': [
137 '<(DEPTH)/third_party/angle/include', 145 '<(DEPTH)/third_party/angle/include',
138 ], 146 ],
139 }], 147 }],
140 ['use_x11 == 1', { 148 ['use_x11 == 1', {
141 'sources': [ 149 'sources': [
142 'gl_context_glx.cc', 150 'gl_context_glx.cc',
143 'gl_context_glx.h', 151 'gl_context_glx.h',
152 'gl_image_glx.cc',
153 'gl_image_glx.h',
144 'gl_surface_glx.cc', 154 'gl_surface_glx.cc',
145 'gl_surface_glx.h', 155 'gl_surface_glx.h',
146 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', 156 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc',
147 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', 157 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h',
148 ], 158 ],
149 'all_dependent_settings': { 159 'all_dependent_settings': {
150 'defines': [ 160 'defines': [
151 'GL_GLEXT_PROTOTYPES', 161 'GL_GLEXT_PROTOTYPES',
152 ], 162 ],
153 }, 163 },
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ], 205 ],
196 'defines': [ 206 'defines': [
197 'GL_GLEXT_PROTOTYPES', 207 'GL_GLEXT_PROTOTYPES',
198 'EGL_EGLEXT_PROTOTYPES', 208 'EGL_EGLEXT_PROTOTYPES',
199 ], 209 ],
200 }], 210 }],
201 ], 211 ],
202 }, 212 },
203 ], 213 ],
204 } 214 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698