| OLD | NEW |
| 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 '../third_party/guava/guava.gyp:guava_javalib', | 312 '../third_party/guava/guava.gyp:guava_javalib', |
| 313 ], | 313 ], |
| 314 }], | 314 }], |
| 315 ], | 315 ], |
| 316 'includes': [ '../build/java.gypi' ], | 316 'includes': [ '../build/java.gypi' ], |
| 317 }, | 317 }, |
| 318 { | 318 { |
| 319 'target_name': 'page_transition_types_java', | 319 'target_name': 'page_transition_types_java', |
| 320 'type': 'none', | 320 'type': 'none', |
| 321 'sources': [ | 321 'sources': [ |
| 322 'public/common/page_transition_types_list.h', | |
| 323 'public/android/java/src/org/chromium/content/browser/PageTransition
Types.template', | 322 'public/android/java/src/org/chromium/content/browser/PageTransition
Types.template', |
| 324 ], | 323 ], |
| 325 'variables': { | 324 'variables': { |
| 326 'package_name': 'org.chromium.content.browser', | 325 'package_name': 'org.chromium.content.browser', |
| 326 'template_deps': ['public/common/page_transition_types_list.h'], |
| 327 }, | 327 }, |
| 328 'includes': [ '../build/android/java_cpp_template.gypi' ], | 328 'includes': [ '../build/android/java_cpp_template.gypi' ], |
| 329 }, | 329 }, |
| 330 { | 330 { |
| 331 'target_name': 'surface_texture_jni_headers', | 331 'target_name': 'surface_texture_jni_headers', |
| 332 'type': 'none', | 332 'type': 'none', |
| 333 'variables': { | 333 'variables': { |
| 334 'jni_gen_dir': 'content', | 334 'jni_gen_dir': 'content', |
| 335 'input_java_class': 'android/graphics/SurfaceTexture.class', | 335 'input_java_class': 'android/graphics/SurfaceTexture.class', |
| 336 'input_jar_file': '<(android_sdk)/android.jar', | 336 'input_jar_file': '<(android_sdk)/android.jar', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 358 'include_dirs': [ | 358 'include_dirs': [ |
| 359 '<(SHARED_INTERMEDIATE_DIR)/content', | 359 '<(SHARED_INTERMEDIATE_DIR)/content', |
| 360 ], | 360 ], |
| 361 }, | 361 }, |
| 362 'includes': [ 'content_jni.gypi' ], | 362 'includes': [ 'content_jni.gypi' ], |
| 363 }, | 363 }, |
| 364 ], | 364 ], |
| 365 }], # OS == "android" | 365 }], # OS == "android" |
| 366 ], | 366 ], |
| 367 } | 367 } |
| OLD | NEW |