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

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

Issue 288963002: Android: cleans up jni_generator_ptr_type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/gfx/gfx.gyp ('k') | no next file » | 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 ], 341 ],
342 'conditions': [ 342 'conditions': [
343 ['OS=="android"' , { 343 ['OS=="android"' , {
344 'targets': [ 344 'targets': [
345 { 345 {
346 'target_name': 'surface_jni_headers', 346 'target_name': 'surface_jni_headers',
347 'type': 'none', 347 'type': 'none',
348 'variables': { 348 'variables': {
349 'jni_gen_package': 'ui/gl', 349 'jni_gen_package': 'ui/gl',
350 'input_java_class': 'android/view/Surface.class', 350 'input_java_class': 'android/view/Surface.class',
351 'jni_generator_ptr_type': 'long',
352 }, 351 },
353 'includes': [ '../../build/jar_file_jni_generator.gypi' ], 352 'includes': [ '../../build/jar_file_jni_generator.gypi' ],
354 }, 353 },
355 { 354 {
356 'target_name': 'gl_jni_headers', 355 'target_name': 'gl_jni_headers',
357 'type': 'none', 356 'type': 'none',
358 'dependencies': [ 357 'dependencies': [
359 'surface_jni_headers', 358 'surface_jni_headers',
360 ], 359 ],
361 'sources': [ 360 'sources': [
362 '../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrappe r.java', 361 '../android/java/src/org/chromium/ui/gl/SurfaceTexturePlatformWrappe r.java',
363 '../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java' , 362 '../android/java/src/org/chromium/ui/gl/SurfaceTextureListener.java' ,
364 ], 363 ],
365 'variables': { 364 'variables': {
366 'jni_gen_package': 'ui/gl', 365 'jni_gen_package': 'ui/gl',
367 'jni_generator_ptr_type': 'long',
368 }, 366 },
369 'includes': [ '../../build/jni_generator.gypi' ], 367 'includes': [ '../../build/jni_generator.gypi' ],
370 }, 368 },
371 ], 369 ],
372 }], 370 }],
373 ], 371 ],
374 } 372 }
OLDNEW
« no previous file with comments | « ui/gfx/gfx.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698