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

Side by Side Diff: android_webview/libwebviewchromium.gypi

Issue 970883002: [Android WebView] Synthesize a fake page loading event on page source modification (Re-land) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed findbugs warning Created 5 years, 9 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 'type': 'shared_library', 5 'type': 'shared_library',
6 'android_unmangled_name': 1, 6 'android_unmangled_name': 1,
7 'dependencies': [ 7 'dependencies': [
8 'android_webview_common', 8 'android_webview_common',
9 ], 9 ],
10 'variables': { 10 'variables': {
11 'use_native_jni_exports': 1, 11 'use_native_jni_exports': 1,
12 }, 12 },
13 'conditions': [ 13 'conditions': [
14 [ 'android_webview_build==1', { 14 [ 'android_webview_build==1', {
15 'dependencies': [ 15 'dependencies': [
16 # When building inside the android tree we also need to depend on all 16 # When building inside the android tree we also need to depend on all
17 # the java sources generated from templates which will be needed by 17 # the java sources generated from templates which will be needed by
18 # android_webview_java in android_webview/java_library_common.mk. 18 # android_webview_java in android_webview/java_library_common.mk.
19 '../base/base.gyp:base_java_application_state', 19 '../base/base.gyp:base_java_application_state',
20 '../base/base.gyp:base_java_library_load_from_apk_status_codes', 20 '../base/base.gyp:base_java_library_load_from_apk_status_codes',
21 '../base/base.gyp:base_java_library_process_type', 21 '../base/base.gyp:base_java_library_process_type',
22 '../base/base.gyp:base_java_memory_pressure_level', 22 '../base/base.gyp:base_java_memory_pressure_level',
23 '../content/content.gyp:console_message_level_java', 23 '../content/content.gyp:console_message_level_java',
24 '../content/content.gyp:content_gamepad_mapping', 24 '../content/content.gyp:content_gamepad_mapping',
25 '../content/content.gyp:gesture_event_type_java', 25 '../content/content.gyp:gesture_event_type_java',
26 '../content/content.gyp:invalidate_types_java',
26 '../content/content.gyp:navigation_controller_java', 27 '../content/content.gyp:navigation_controller_java',
27 '../content/content.gyp:popup_item_type_java', 28 '../content/content.gyp:popup_item_type_java',
28 '../content/content.gyp:result_codes_java', 29 '../content/content.gyp:result_codes_java',
29 '../content/content.gyp:screen_orientation_values_java', 30 '../content/content.gyp:screen_orientation_values_java',
30 '../content/content.gyp:speech_recognition_error_java', 31 '../content/content.gyp:speech_recognition_error_java',
31 '../content/content.gyp:top_controls_state_java', 32 '../content/content.gyp:top_controls_state_java',
32 '../media/media.gyp:media_android_imageformat', 33 '../media/media.gyp:media_android_imageformat',
33 '../net/net.gyp:cert_verify_status_android_java', 34 '../net/net.gyp:cert_verify_status_android_java',
34 '../net/net.gyp:certificate_mime_types_java', 35 '../net/net.gyp:certificate_mime_types_java',
35 '../net/net.gyp:network_change_notifier_types_java', 36 '../net/net.gyp:network_change_notifier_types_java',
(...skipping 17 matching lines...) Expand all
53 # android. 54 # android.
54 'aosp_build_settings': { 55 'aosp_build_settings': {
55 'LOCAL_FDO_SUPPORT': 'true', 56 'LOCAL_FDO_SUPPORT': 'true',
56 }, 57 },
57 }], 58 }],
58 ], 59 ],
59 'sources': [ 60 'sources': [
60 'lib/main/webview_entry_point.cc', 61 'lib/main/webview_entry_point.cc',
61 ], 62 ],
62 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698