OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 { |
| 5 'type': 'shared_library', |
| 6 'android_unmangled_name': 1, |
| 7 'dependencies': [ |
| 8 'android_webview_common', |
| 9 ], |
| 10 'conditions': [ |
| 11 [ 'android_webview_build==1', { |
| 12 # When building inside the android tree we also need to depend on all |
| 13 # the java sources generated from templates which will be needed by |
| 14 # android_webview_java in android_webview/java_library_common.mk. |
| 15 'dependencies': [ |
| 16 '../base/base.gyp:base_java_application_state', |
| 17 '../base/base.gyp:base_java_memory_pressure_level_list', |
| 18 '../content/content.gyp:content_gamepad_mapping', |
| 19 '../content/content.gyp:gesture_event_type_java', |
| 20 '../content/content.gyp:page_transition_types_java', |
| 21 '../content/content.gyp:popup_item_type_java', |
| 22 '../content/content.gyp:result_codes_java', |
| 23 '../content/content.gyp:screen_orientation_values_java', |
| 24 '../content/content.gyp:selection_event_type_java', |
| 25 '../content/content.gyp:speech_recognition_error_java', |
| 26 '../media/media.gyp:media_android_imageformat_list', |
| 27 '../net/net.gyp:cert_verify_status_android_java', |
| 28 '../net/net.gyp:certificate_mime_types_java', |
| 29 '../net/net.gyp:net_errors_java', |
| 30 '../net/net.gyp:private_key_types_java', |
| 31 '../ui/android/ui_android.gyp:bitmap_format_java', |
| 32 '../ui/android/ui_android.gyp:window_open_disposition_java', |
| 33 ], |
| 34 }], |
| 35 [ 'android_webview_build==1 and use_system_skia==0', { |
| 36 # When not using the system skia there are linker warnings about |
| 37 # overriden hidden symbols which there's no easy way to eliminate; |
| 38 # disable them. http://crbug.com/157326 |
| 39 'ldflags': [ |
| 40 '-Wl,--no-fatal-warnings', |
| 41 ], |
| 42 'ldflags!': [ |
| 43 '-Wl,--fatal-warnings', |
| 44 ], |
| 45 }], |
| 46 ['android_webview_build==1 and use_system_stlport==1', { |
| 47 # ICU requires RTTI, which is not present in the system's stlport, so |
| 48 # we have to include gabi++. We can't include it in icu.gyp because |
| 49 # link_settings cannot be used inside target_conditions. This will be |
| 50 # removed once we stop using the system stlport. |
| 51 # http://crbug.com/409851 |
| 52 'libraries': [ |
| 53 '-lgabi++', |
| 54 ], |
| 55 }], |
| 56 ], |
| 57 'sources': [ |
| 58 'lib/main/webview_entry_point.cc', |
| 59 ], |
| 60 } |
| 61 |
OLD | NEW |