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

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

Issue 177953004: Enable SurfaceTexture based zero-copy texture uploading on Android platform Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 ], 267 ],
268 }, 268 },
269 }], 269 }],
270 ['OS=="android"', { 270 ['OS=="android"', {
271 'dependencies': [ 271 'dependencies': [
272 'gl_jni_headers', 272 'gl_jni_headers',
273 ], 273 ],
274 'sources': [ 274 'sources': [
275 'gl_image_egl.cc', 275 'gl_image_egl.cc',
276 'gl_image_egl.h', 276 'gl_image_egl.h',
277 'gl_image_surface_texture.cc',
278 'gl_image_surface_texture.h',
277 ], 279 ],
278 'link_settings': { 280 'link_settings': {
279 'libraries': [ 281 'libraries': [
280 '-landroid', 282 '-landroid',
281 ], 283 ],
282 }, 284 },
283 'sources!': [ 285 'sources!': [
284 'system_monitor_posix.cc', 286 'system_monitor_posix.cc',
285 ], 287 ],
286 'defines': [ 288 'defines': [
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 'variables': { 355 'variables': {
354 'jni_gen_package': 'ui/gl', 356 'jni_gen_package': 'ui/gl',
355 'jni_generator_ptr_type': 'long', 357 'jni_generator_ptr_type': 'long',
356 }, 358 },
357 'includes': [ '../../build/jni_generator.gypi' ], 359 'includes': [ '../../build/jni_generator.gypi' ],
358 }, 360 },
359 ], 361 ],
360 }], 362 }],
361 ], 363 ],
362 } 364 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698