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

Side by Side Diff: content/content.gyp

Issue 10968009: Android: generates JNI bindings for constructors in system classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: jam comment Created 8 years, 3 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 | « content/common/android/surface_texture_bridge.cc ('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, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 'conditions': [ 9 'conditions': [
10 ['inside_chromium_build==0', { 10 ['inside_chromium_build==0', {
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 '../net/net.gyp:net', 291 '../net/net.gyp:net',
292 '../ui/ui.gyp:ui_java', 292 '../ui/ui.gyp:ui_java',
293 ], 293 ],
294 'variables': { 294 'variables': {
295 'package_name': 'content', 295 'package_name': 'content',
296 'java_in_dir': '../content/public/android/java', 296 'java_in_dir': '../content/public/android/java',
297 }, 297 },
298 'includes': [ '../build/java.gypi' ], 298 'includes': [ '../build/java.gypi' ],
299 }, 299 },
300 { 300 {
301 'target_name': 'surface_texture_jni_headers',
302 'type': 'none',
303 'variables': {
304 'jni_gen_dir': 'content',
305 'input_java_class': 'android/graphics/SurfaceTexture.class',
306 'input_jar_file': '<(android_sdk)/android.jar',
307 },
308 'includes': [ '../build/jar_file_jni_generator.gypi' ],
309 },
310 {
301 'target_name': 'content_jni_headers', 311 'target_name': 'content_jni_headers',
302 'type': 'none', 312 'type': 'none',
313 'dependencies': [
314 'surface_texture_jni_headers',
315 ],
303 'includes': [ 'content_jni.gypi' ], 316 'includes': [ 'content_jni.gypi' ],
304 }, 317 },
305 ], 318 ],
306 }], # OS == "android" 319 }], # OS == "android"
307 ], 320 ],
308 } 321 }
OLDNEW
« no previous file with comments | « content/common/android/surface_texture_bridge.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698