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

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

Issue 331723003: gpu: Remove Create/DeleteImage IPC by adding an X11_PIXMAP_BUFFER GpuMemoryBuffer type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: include x11 pixmap tracker Created 6 years, 6 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 'gl_context_glx.cc', 201 'gl_context_glx.cc',
202 'gl_context_glx.h', 202 'gl_context_glx.h',
203 'gl_glx_api_implementation.cc', 203 'gl_glx_api_implementation.cc',
204 'gl_glx_api_implementation.h', 204 'gl_glx_api_implementation.h',
205 'gl_image_glx.cc', 205 'gl_image_glx.cc',
206 'gl_image_glx.h', 206 'gl_image_glx.h',
207 'gl_surface_glx.cc', 207 'gl_surface_glx.cc',
208 'gl_surface_glx.h', 208 'gl_surface_glx.h',
209 'gl_egl_api_implementation.cc', 209 'gl_egl_api_implementation.cc',
210 'gl_egl_api_implementation.h', 210 'gl_egl_api_implementation.h',
211 'x11_pixmap_tracker.cc',
212 'x11_pixmap_tracker.h',
211 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', 213 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc',
212 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', 214 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h',
213 ], 215 ],
214 'all_dependent_settings': { 216 'all_dependent_settings': {
215 'defines': [ 217 'defines': [
216 'GL_GLEXT_PROTOTYPES', 218 'GL_GLEXT_PROTOTYPES',
217 ], 219 ],
218 }, 220 },
219 'dependencies': [ 221 'dependencies': [
220 '<(DEPTH)/build/linux/system.gyp:x11', 222 '<(DEPTH)/build/linux/system.gyp:x11',
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 ], 365 ],
364 'variables': { 366 'variables': {
365 'jni_gen_package': 'ui/gl', 367 'jni_gen_package': 'ui/gl',
366 }, 368 },
367 'includes': [ '../../build/jni_generator.gypi' ], 369 'includes': [ '../../build/jni_generator.gypi' ],
368 }, 370 },
369 ], 371 ],
370 }], 372 }],
371 ], 373 ],
372 } 374 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698