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

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

Issue 11428140: gpu: Add async pixel transfer interface, stub and tests. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added memory dup/mmap Created 8 years 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
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 22 matching lines...) Expand all
33 ], 33 ],
34 'direct_dependent_settings': { 34 'direct_dependent_settings': {
35 'include_dirs': [ 35 'include_dirs': [
36 '<(gl_binding_output_dir)', 36 '<(gl_binding_output_dir)',
37 ], 37 ],
38 }, 38 },
39 'export_dependent_settings': [ 39 'export_dependent_settings': [
40 '<(DEPTH)/third_party/mesa/mesa.gyp:mesa_headers', 40 '<(DEPTH)/third_party/mesa/mesa.gyp:mesa_headers',
41 ], 41 ],
42 'sources': [ 42 'sources': [
43 'async_pixel_transfer_delegate.h',
43 'gl_bindings.h', 44 'gl_bindings.h',
44 'gl_bindings_skia_in_process.cc', 45 'gl_bindings_skia_in_process.cc',
45 'gl_bindings_skia_in_process.h', 46 'gl_bindings_skia_in_process.h',
46 'gl_context.cc', 47 'gl_context.cc',
47 'gl_context.h', 48 'gl_context.h',
48 'gl_context_android.cc', 49 'gl_context_android.cc',
49 'gl_context_linux.cc', 50 'gl_context_linux.cc',
50 'gl_context_mac.mm', 51 'gl_context_mac.mm',
51 'gl_context_osmesa.cc', 52 'gl_context_osmesa.cc',
52 'gl_context_osmesa.h', 53 'gl_context_osmesa.h',
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 'gl_context_nsview.mm', 225 'gl_context_nsview.mm',
225 'gl_context_nsview.h', 226 'gl_context_nsview.h',
226 'gl_surface_nsview.mm', 227 'gl_surface_nsview.mm',
227 'gl_surface_nsview.h', 228 'gl_surface_nsview.h',
228 ], 229 ],
229 }], 230 }],
230 ['OS=="android"', { 231 ['OS=="android"', {
231 'sources': [ 232 'sources': [
232 'android_native_window.cc', 233 'android_native_window.cc',
233 'android_native_window.h', 234 'android_native_window.h',
235 'async_pixel_transfer_delegate_android.cc',
236 'async_pixel_transfer_delegate_android.h'
234 ], 237 ],
235 'sources!': [ 238 'sources!': [
236 'gl_context_osmesa.cc', 239 'gl_context_osmesa.cc',
237 'system_monitor_posix.cc', 240 'system_monitor_posix.cc',
238 ], 241 ],
239 'defines': [ 242 'defines': [
240 'GL_GLEXT_PROTOTYPES', 243 'GL_GLEXT_PROTOTYPES',
241 'EGL_EGLEXT_PROTOTYPES', 244 'EGL_EGLEXT_PROTOTYPES',
242 ], 245 ],
243 }], 246 }],
244 ], 247 ],
245 }, 248 },
246 ], 249 ],
247 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698