OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 '../components/components.gyp:navigation_interception_java', | 186 '../components/components.gyp:navigation_interception_java', |
187 '../components/components.gyp:web_contents_delegate_android_java', | 187 '../components/components.gyp:web_contents_delegate_android_java', |
188 '../content/content.gyp:content_java', | 188 '../content/content.gyp:content_java', |
189 '../ui/ui.gyp:ui_java', | 189 '../ui/ui.gyp:ui_java', |
190 ], | 190 ], |
191 'variables': { | 191 'variables': { |
192 'java_in_dir': '../android_webview/java', | 192 'java_in_dir': '../android_webview/java', |
193 }, | 193 }, |
194 'includes': [ '../build/java.gypi' ], | 194 'includes': [ '../build/java.gypi' ], |
195 }, | 195 }, |
196 { | |
197 'target_name': 'android_webview_apk', | |
198 'type': 'none', | |
199 'dependencies': [ | |
200 '../base/base.gyp:base_java', | |
201 '../components/components.gyp:navigation_interception_java', | |
202 '../components/components.gyp:web_contents_delegate_android_java', | |
203 '../content/content.gyp:content_java', | |
204 '../media/media.gyp:media_java', | |
205 '../net/net.gyp:net_java', | |
206 '../ui/ui.gyp:ui_java', | |
207 'libwebviewchromium', | |
208 ], | |
209 'variables': { | |
210 'apk_name': 'AndroidWebView', | |
211 'manifest_package_name': 'org.chromium.android_webview', | |
212 'java_in_dir': '../android_webview/java', | |
213 'native_libs_paths': ['<(SHARED_LIB_DIR)/libwebviewchromium.so'], | |
214 'additional_input_paths': [ | |
215 '<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak', | |
216 ], | |
217 }, | |
218 'includes': [ '../build/java_apk.gypi' ], | |
219 }, | |
220 ], | 196 ], |
221 } | 197 } |
OLD | NEW |