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

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

Issue 13543007: GLImage support for Android zero-copy pixel buffers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add expectations to the unittests for GetErrors() coming from the suppressor Created 7 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
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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 'gl_surface_nsview.mm', 251 'gl_surface_nsview.mm',
252 'gl_surface_nsview.h', 252 'gl_surface_nsview.h',
253 ], 253 ],
254 }], 254 }],
255 ['OS=="android"', { 255 ['OS=="android"', {
256 'sources': [ 256 'sources': [
257 'async_pixel_transfer_delegate_android.cc', 257 'async_pixel_transfer_delegate_android.cc',
258 'async_pixel_transfer_delegate_android.h', 258 'async_pixel_transfer_delegate_android.h',
259 'android_native_window.cc', 259 'android_native_window.cc',
260 'android_native_window.h', 260 'android_native_window.h',
261 'gl_image_egl.cc',
262 'gl_image_egl.h',
261 ], 263 ],
262 'link_settings': { 264 'link_settings': {
263 'libraries': [ 265 'libraries': [
264 '-landroid', 266 '-landroid',
265 ], 267 ],
266 }, 268 },
267 'sources!': [ 269 'sources!': [
268 'gl_context_osmesa.cc', 270 'gl_context_osmesa.cc',
269 'system_monitor_posix.cc', 271 'system_monitor_posix.cc',
270 ], 272 ],
(...skipping 25 matching lines...) Expand all
296 ], 298 ],
297 }, 299 },
298 'sources': [ 300 'sources': [
299 'gl_mock.h', 301 'gl_mock.h',
300 'gl_mock.cc', 302 'gl_mock.cc',
301 '<(gl_binding_output_dir)/gl_mock_autogen_gl.h', 303 '<(gl_binding_output_dir)/gl_mock_autogen_gl.h',
302 ], 304 ],
303 }, 305 },
304 ], 306 ],
305 } 307 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698