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

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

Issue 215143002: ui: Add Linux dma-buf implementation of GLImage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | ui/gl/gl_image_linux_dma_buffer.h » ('j') | ui/gl/gl_image_linux_dma_buffer.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 'include_dirs': [ 187 'include_dirs': [
188 '<(DEPTH)/third_party/khronos', 188 '<(DEPTH)/third_party/khronos',
189 ], 189 ],
190 }], 190 }],
191 ['OS in ("android", "linux")', { 191 ['OS in ("android", "linux")', {
192 'sources': [ 192 'sources': [
193 'gl_implementation_osmesa.cc', 193 'gl_implementation_osmesa.cc',
194 'gl_implementation_osmesa.h', 194 'gl_implementation_osmesa.h',
195 ], 195 ],
196 }], 196 }],
197 ['OS=="linux"', {
198 'sources': [
199 'gl_image_linux_dma_buffer.cc',
200 'gl_image_linux_dma_buffer.h',
201 ],
202 }],
197 ['use_x11 == 1', { 203 ['use_x11 == 1', {
198 'sources': [ 204 'sources': [
199 'gl_context_glx.cc', 205 'gl_context_glx.cc',
200 'gl_context_glx.h', 206 'gl_context_glx.h',
201 'gl_glx_api_implementation.cc', 207 'gl_glx_api_implementation.cc',
202 'gl_glx_api_implementation.h', 208 'gl_glx_api_implementation.h',
203 'gl_image_glx.cc', 209 'gl_image_glx.cc',
204 'gl_image_glx.h', 210 'gl_image_glx.h',
205 'gl_surface_glx.cc', 211 'gl_surface_glx.cc',
206 'gl_surface_glx.h', 212 'gl_surface_glx.h',
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 'variables': { 367 'variables': {
362 'jni_gen_package': 'ui/gl', 368 'jni_gen_package': 'ui/gl',
363 'jni_generator_ptr_type': 'long', 369 'jni_generator_ptr_type': 'long',
364 }, 370 },
365 'includes': [ '../../build/jni_generator.gypi' ], 371 'includes': [ '../../build/jni_generator.gypi' ],
366 }, 372 },
367 ], 373 ],
368 }], 374 }],
369 ], 375 ],
370 } 376 }
OLDNEW
« no previous file with comments | « no previous file | ui/gl/gl_image_linux_dma_buffer.h » ('j') | ui/gl/gl_image_linux_dma_buffer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698