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

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

Issue 195583003: Add initial GpuMemoryBufferSurfaceTexture implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 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 | « ui/gl/android/surface_texture_tracker.cc ('k') | ui/gl/gl_image_android.cc » ('j') | no next file with comments »
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 ], 43 ],
44 'sources': [ 44 'sources': [
45 'android/gl_jni_registrar.cc', 45 'android/gl_jni_registrar.cc',
46 'android/gl_jni_registrar.h', 46 'android/gl_jni_registrar.h',
47 'android/scoped_java_surface.cc', 47 'android/scoped_java_surface.cc',
48 'android/scoped_java_surface.h', 48 'android/scoped_java_surface.h',
49 'android/surface_texture.cc', 49 'android/surface_texture.cc',
50 'android/surface_texture.h', 50 'android/surface_texture.h',
51 'android/surface_texture_listener.cc', 51 'android/surface_texture_listener.cc',
52 'android/surface_texture_listener.h', 52 'android/surface_texture_listener.h',
53 'android/surface_texture_tracker.cc',
54 'android/surface_texture_tracker.h',
53 'gl_bindings.h', 55 'gl_bindings.h',
54 'gl_bindings_skia_in_process.cc', 56 'gl_bindings_skia_in_process.cc',
55 'gl_bindings_skia_in_process.h', 57 'gl_bindings_skia_in_process.h',
56 'gl_context.cc', 58 'gl_context.cc',
57 'gl_context.h', 59 'gl_context.h',
58 'gl_context_android.cc', 60 'gl_context_android.cc',
59 'gl_context_mac.mm', 61 'gl_context_mac.mm',
60 'gl_context_ozone.cc', 62 'gl_context_ozone.cc',
61 'gl_context_osmesa.cc', 63 'gl_context_osmesa.cc',
62 'gl_context_osmesa.h', 64 'gl_context_osmesa.h',
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 ], 274 ],
273 }, 275 },
274 }], 276 }],
275 ['OS=="android"', { 277 ['OS=="android"', {
276 'dependencies': [ 278 'dependencies': [
277 'gl_jni_headers', 279 'gl_jni_headers',
278 ], 280 ],
279 'sources': [ 281 'sources': [
280 'gl_image_android_native_buffer.cc', 282 'gl_image_android_native_buffer.cc',
281 'gl_image_android_native_buffer.h', 283 'gl_image_android_native_buffer.h',
284 'gl_image_surface_texture.cc',
285 'gl_image_surface_texture.h',
282 ], 286 ],
283 'link_settings': { 287 'link_settings': {
284 'libraries': [ 288 'libraries': [
285 '-landroid', 289 '-landroid',
286 ], 290 ],
287 }, 291 },
288 'sources!': [ 292 'sources!': [
289 'system_monitor_posix.cc', 293 'system_monitor_posix.cc',
290 ], 294 ],
291 'defines': [ 295 'defines': [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 'variables': { 367 'variables': {
364 'jni_gen_package': 'ui/gl', 368 'jni_gen_package': 'ui/gl',
365 'jni_generator_ptr_type': 'long', 369 'jni_generator_ptr_type': 'long',
366 }, 370 },
367 'includes': [ '../../build/jni_generator.gypi' ], 371 'includes': [ '../../build/jni_generator.gypi' ],
368 }, 372 },
369 ], 373 ],
370 }], 374 }],
371 ], 375 ],
372 } 376 }
OLDNEW
« no previous file with comments | « ui/gl/android/surface_texture_tracker.cc ('k') | ui/gl/gl_image_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698