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

Side by Side Diff: content/content.gyp

Issue 11577016: Generate PageTransitionTypes.java for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deprecate instead of remove old constants. 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 | Annotate | Revision Log
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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 }, 280 },
281 { 281 {
282 'target_name': 'content_java', 282 'target_name': 'content_java',
283 'type': 'none', 283 'type': 'none',
284 'dependencies': [ 284 'dependencies': [
285 '../base/base.gyp:base', 285 '../base/base.gyp:base',
286 '../net/net.gyp:net', 286 '../net/net.gyp:net',
287 '../ui/ui.gyp:ui_java', 287 '../ui/ui.gyp:ui_java',
288 'common_aidl', 288 'common_aidl',
289 'content_common', 289 'content_common',
290 'page_transition_types_java',
290 ], 291 ],
291 'variables': { 292 'variables': {
292 'package_name': 'content', 293 'package_name': 'content',
293 'java_in_dir': '../content/public/android/java', 294 'java_in_dir': '../content/public/android/java',
294 'has_java_resources': 1, 295 'has_java_resources': 1,
295 'R_package': 'org.chromium.content', 296 'R_package': 'org.chromium.content',
296 'R_package_relpath': 'org/chromium/content', 297 'R_package_relpath': 'org/chromium/content',
297 }, 298 },
298 'includes': [ '../build/java.gypi' ], 299 'includes': [ '../build/java.gypi' ],
299 }, 300 },
300 { 301 {
302 'target_name': 'page_transition_types_java',
303 'type': 'none',
304 'sources': [
305 'public/common/page_transition_types_list.h',
306 'public/android/java/src/org/chromium/content/browser/PageTransition Types.template',
307 ],
308 'variables': {
309 'package_name': 'org.chromium.content.browser',
310 },
311 'includes': [ '../build/android/java_cpp_template.gypi' ],
312 },
313 {
301 'target_name': 'surface_texture_jni_headers', 314 'target_name': 'surface_texture_jni_headers',
302 'type': 'none', 315 'type': 'none',
303 'variables': { 316 'variables': {
304 'jni_gen_dir': 'content', 317 'jni_gen_dir': 'content',
305 'input_java_class': 'android/graphics/SurfaceTexture.class', 318 'input_java_class': 'android/graphics/SurfaceTexture.class',
306 'input_jar_file': '<(android_sdk)/android.jar', 319 'input_jar_file': '<(android_sdk)/android.jar',
307 }, 320 },
308 'includes': [ '../build/jar_file_jni_generator.gypi' ], 321 'includes': [ '../build/jar_file_jni_generator.gypi' ],
309 }, 322 },
310 { 323 {
(...skipping 12 matching lines...) Expand all
323 'dependencies': [ 336 'dependencies': [
324 'surface_texture_jni_headers', 337 'surface_texture_jni_headers',
325 'surface_jni_headers', 338 'surface_jni_headers',
326 ], 339 ],
327 'includes': [ 'content_jni.gypi' ], 340 'includes': [ 'content_jni.gypi' ],
328 }, 341 },
329 ], 342 ],
330 }], # OS == "android" 343 }], # OS == "android"
331 ], 344 ],
332 } 345 }
OLDNEW
« no previous file with comments | « android_webview/java/src/org/chromium/android_webview/AwContents.java ('k') | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698