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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1156873002: Load v8 snapshots directly from APK (and store them uncompressed) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8initializer
Patch Set: fix webview, content shell, chromecast Created 5 years, 6 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
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698