| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'android_support_v13_target%': | 7 'android_support_v13_target%': |
| 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java
lib', | 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java
lib', |
| 9 'cast_build_release': 'internal/build/cast_build_release', | 9 'cast_build_release': 'internal/build/cast_build_release', |
| 10 'cast_is_debug_build%': 0, | 10 'cast_is_debug_build%': 0, |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 # a java_in_dir directory, but complains about duplicate classes | 522 # a java_in_dir directory, but complains about duplicate classes |
| 523 # from the common cast_shell_java target (shared with internal APK) | 523 # from the common cast_shell_java target (shared with internal APK) |
| 524 # if the actual Java path is used. | 524 # if the actual Java path is used. |
| 525 # This will hopefully be removable after the great GN migration. | 525 # This will hopefully be removable after the great GN migration. |
| 526 'java_in_dir': 'android', | 526 'java_in_dir': 'android', |
| 527 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/cast_shell_mani
fest/AndroidManifest.xml', | 527 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/cast_shell_mani
fest/AndroidManifest.xml', |
| 528 'package_name': 'org.chromium.chromecast.shell', | 528 'package_name': 'org.chromium.chromecast.shell', |
| 529 'native_lib_target': 'libcast_shell_android', | 529 'native_lib_target': 'libcast_shell_android', |
| 530 'asset_location': '<(PRODUCT_DIR)/assets', | 530 'asset_location': '<(PRODUCT_DIR)/assets', |
| 531 'additional_input_paths': ['<(PRODUCT_DIR)/assets/cast_shell.pak'], | 531 'additional_input_paths': ['<(PRODUCT_DIR)/assets/cast_shell.pak'], |
| 532 # Allow v8 snapshots to be loaded directly from the .apk. |
| 533 'extensions_to_not_compress': 'bin', |
| 532 }, | 534 }, |
| 533 'includes': [ '../build/java_apk.gypi' ], | 535 'includes': [ '../build/java_apk.gypi' ], |
| 534 }, | 536 }, |
| 535 { | 537 { |
| 536 'target_name': 'cast_jni_headers', | 538 'target_name': 'cast_jni_headers', |
| 537 'type': 'none', | 539 'type': 'none', |
| 538 'sources': [ | 540 'sources': [ |
| 539 'browser/android/apk/src/org/chromium/chromecast/shell/CastCrashHand
ler.java', | 541 'browser/android/apk/src/org/chromium/chromecast/shell/CastCrashHand
ler.java', |
| 540 'browser/android/apk/src/org/chromium/chromecast/shell/CastMetricsHe
lper.java', | 542 'browser/android/apk/src/org/chromium/chromecast/shell/CastMetricsHe
lper.java', |
| 541 'browser/android/apk/src/org/chromium/chromecast/shell/CastSysInfoAn
droid.java', | 543 'browser/android/apk/src/org/chromium/chromecast/shell/CastSysInfoAn
droid.java', |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 'sources': [ | 649 'sources': [ |
| 648 'graphics/cast_egl_platform_default.cc', | 650 'graphics/cast_egl_platform_default.cc', |
| 649 'graphics/graphics_properties_default.cc', | 651 'graphics/graphics_properties_default.cc', |
| 650 'graphics/osd_plane_default.cc' | 652 'graphics/osd_plane_default.cc' |
| 651 ], | 653 ], |
| 652 } | 654 } |
| 653 ] | 655 ] |
| 654 }], | 656 }], |
| 655 ], # end of conditions | 657 ], # end of conditions |
| 656 } | 658 } |
| OLD | NEW |