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 '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 'conditions': [ | 10 'conditions': [ |
11 [ 'android_webview_build==1', { | 11 [ 'android_webview_build==1', { |
12 'dependencies': [ | 12 'dependencies': [ |
13 # When building inside the android tree we also need to depend on all | 13 # When building inside the android tree we also need to depend on all |
14 # the java sources generated from templates which will be needed by | 14 # the java sources generated from templates which will be needed by |
15 # android_webview_java in android_webview/java_library_common.mk. | 15 # android_webview_java in android_webview/java_library_common.mk. |
16 '../base/base.gyp:base_java_application_state', | 16 '../base/base.gyp:base_java_application_state', |
17 '../base/base.gyp:base_java_library_load_from_apk_status_codes', | 17 '../base/base.gyp:base_java_library_load_from_apk_status_codes', |
| 18 '../base/base.gyp:base_java_library_process_type', |
18 '../base/base.gyp:base_java_memory_pressure_level', | 19 '../base/base.gyp:base_java_memory_pressure_level', |
19 '../content/content.gyp:console_message_level_java', | 20 '../content/content.gyp:console_message_level_java', |
20 '../content/content.gyp:content_gamepad_mapping', | 21 '../content/content.gyp:content_gamepad_mapping', |
21 '../content/content.gyp:gesture_event_type_java', | 22 '../content/content.gyp:gesture_event_type_java', |
22 '../content/content.gyp:navigation_controller_java', | 23 '../content/content.gyp:navigation_controller_java', |
23 '../content/content.gyp:popup_item_type_java', | 24 '../content/content.gyp:popup_item_type_java', |
24 '../content/content.gyp:result_codes_java', | 25 '../content/content.gyp:result_codes_java', |
25 '../content/content.gyp:screen_orientation_values_java', | 26 '../content/content.gyp:screen_orientation_values_java', |
26 '../content/content.gyp:speech_recognition_error_java', | 27 '../content/content.gyp:speech_recognition_error_java', |
27 '../content/content.gyp:top_controls_state_java', | 28 '../content/content.gyp:top_controls_state_java', |
(...skipping 20 matching lines...) Expand all Loading... |
48 # android. | 49 # android. |
49 'aosp_build_settings': { | 50 'aosp_build_settings': { |
50 'LOCAL_FDO_SUPPORT': 'true', | 51 'LOCAL_FDO_SUPPORT': 'true', |
51 }, | 52 }, |
52 }], | 53 }], |
53 ], | 54 ], |
54 'sources': [ | 55 'sources': [ |
55 'lib/main/webview_entry_point.cc', | 56 'lib/main/webview_entry_point.cc', |
56 ], | 57 ], |
57 } | 58 } |
OLD | NEW |