OLD | NEW |
1 # Copyright 2009 The Chromium Authors. All rights reserved. | 1 # Copyright 2009 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'includes': [ | 8 'includes': [ |
9 'android_webview_tests.gypi', | 9 'android_webview_tests.gypi', |
10 ], | 10 ], |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 '<@(pak_inputs)'], | 71 '<@(pak_inputs)'], |
72 } | 72 } |
73 ], | 73 ], |
74 }, | 74 }, |
75 { | 75 { |
76 'target_name': 'android_webview_common', | 76 'target_name': 'android_webview_common', |
77 'type': 'static_library', | 77 'type': 'static_library', |
78 'dependencies': [ | 78 'dependencies': [ |
79 '../android_webview/native/webview_native.gyp:webview_native', | 79 '../android_webview/native/webview_native.gyp:webview_native', |
80 '../components/components.gyp:auto_login_parser', | 80 '../components/components.gyp:auto_login_parser', |
| 81 '../components/components.gyp:autofill_renderer', |
81 '../components/components.gyp:navigation_interception', | 82 '../components/components.gyp:navigation_interception', |
82 '../components/components.gyp:visitedlink_browser', | 83 '../components/components.gyp:visitedlink_browser', |
83 '../components/components.gyp:visitedlink_renderer', | 84 '../components/components.gyp:visitedlink_renderer', |
84 '../components/components.gyp:web_contents_delegate_android', | 85 '../components/components.gyp:web_contents_delegate_android', |
85 '../content/content.gyp:content', | 86 '../content/content.gyp:content', |
86 '../skia/skia.gyp:skia', | 87 '../skia/skia.gyp:skia', |
87 '../gpu/gpu.gyp:gles2_implementation', | 88 '../gpu/gpu.gyp:gles2_implementation', |
88 '../ui/gl/gl.gyp:gl', | 89 '../ui/gl/gl.gyp:gl', |
89 '../webkit/gpu/webkit_gpu.gyp:webkit_gpu', | 90 '../webkit/gpu/webkit_gpu.gyp:webkit_gpu', |
90 'android_webview_pak', | 91 'android_webview_pak', |
91 ], | 92 ], |
92 'include_dirs': [ | 93 'include_dirs': [ |
93 '..', | 94 '..', |
94 '../skia/config', | 95 '../skia/config', |
95 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/', | 96 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/', |
96 ], | 97 ], |
97 'sources': [ | 98 'sources': [ |
| 99 'browser/aw_autofill_external_delegate.cc', |
| 100 'browser/aw_autofill_external_delegate.h', |
98 'browser/aw_autofill_manager_delegate.cc', | 101 'browser/aw_autofill_manager_delegate.cc', |
99 'browser/aw_autofill_manager_delegate.h', | 102 'browser/aw_autofill_manager_delegate.h', |
100 'browser/aw_browser_context.cc', | 103 'browser/aw_browser_context.cc', |
101 'browser/aw_browser_context.h', | 104 'browser/aw_browser_context.h', |
102 'browser/aw_browser_main_parts.cc', | 105 'browser/aw_browser_main_parts.cc', |
103 'browser/aw_browser_main_parts.h', | 106 'browser/aw_browser_main_parts.h', |
104 'browser/aw_contents_client_bridge_base.cc', | 107 'browser/aw_contents_client_bridge_base.cc', |
105 'browser/aw_contents_client_bridge_base.h', | 108 'browser/aw_contents_client_bridge_base.h', |
106 'browser/aw_content_browser_client.cc', | 109 'browser/aw_content_browser_client.cc', |
107 'browser/aw_content_browser_client.h', | 110 'browser/aw_content_browser_client.h', |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 '../content/content.gyp:content_java', | 210 '../content/content.gyp:content_java', |
208 '../ui/ui.gyp:ui_java', | 211 '../ui/ui.gyp:ui_java', |
209 ], | 212 ], |
210 'variables': { | 213 'variables': { |
211 'java_in_dir': '../android_webview/java', | 214 'java_in_dir': '../android_webview/java', |
212 }, | 215 }, |
213 'includes': [ '../build/java.gypi' ], | 216 'includes': [ '../build/java.gypi' ], |
214 }, | 217 }, |
215 ], | 218 ], |
216 } | 219 } |
OLD | NEW |