OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'libwebview', | 10 'target_name': 'libwebview', |
11 'type': 'shared_library', | 11 'type': 'shared_library', |
12 'dependencies': [ | 12 'dependencies': [ |
13 '../chrome/chrome.gyp:browser', | 13 '../chrome/chrome.gyp:browser', |
14 '../chrome/chrome.gyp:renderer', | 14 '../chrome/chrome.gyp:renderer', |
15 '../content/content.gyp:content', | 15 '../content/content.gyp:content', |
16 '../android_webview/native/webview_native.gyp:webview_native', | 16 '../android_webview/native/webview_native.gyp:webview_native', |
17 '../chrome/browser/component/components.gyp:navigation_interception', | 17 '../chrome/browser/component/components.gyp:navigation_interception', |
18 '../chrome/browser/component/components.gyp:web_contents_delegate_androi
d', | 18 '../chrome/browser/component/components.gyp:web_contents_delegate_androi
d', |
19 '../chrome/browser/component/components.gyp:browser_component_jni_header
s', | 19 '../chrome/browser/component/components.gyp:browser_component_jni_header
s', |
20 ], | 20 ], |
21 'include_dirs': [ | 21 'include_dirs': [ |
22 '..', | 22 '..', |
23 '../skia/config', | 23 '../skia/config', |
24 ], | 24 ], |
25 'sources': [ | 25 'sources': [ |
26 'common/android_webview_message_generator.cc', | 26 'common/android_webview_message_generator.cc', |
27 'common/android_webview_message_generator.h', | 27 'common/android_webview_message_generator.h', |
| 28 'common/aw_content_client.cc', |
| 29 'common/aw_content_client.h', |
28 'common/render_view_messages.cc', | 30 'common/render_view_messages.cc', |
29 'common/render_view_messages.h', | 31 'common/render_view_messages.h', |
30 'common/url_constants.cc', | 32 'common/url_constants.cc', |
31 'common/url_constants.h', | 33 'common/url_constants.h', |
32 'browser/aw_contents_io_thread_client.h', | 34 'browser/aw_contents_io_thread_client.h', |
33 'browser/aw_cookie_access_policy.cc', | 35 'browser/aw_cookie_access_policy.cc', |
34 'browser/aw_cookie_access_policy.h', | 36 'browser/aw_cookie_access_policy.h', |
35 'browser/aw_http_auth_handler_base.cc', | 37 'browser/aw_http_auth_handler_base.cc', |
36 'browser/aw_http_auth_handler_base.h', | 38 'browser/aw_http_auth_handler_base.h', |
37 'browser/aw_login_delegate.cc', | 39 'browser/aw_login_delegate.cc', |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 'copies': [ | 192 'copies': [ |
191 { | 193 { |
192 'destination': '<(PRODUCT_DIR)/android_webview_test/assets', | 194 'destination': '<(PRODUCT_DIR)/android_webview_test/assets', |
193 'files': [ '<!@(find <(java_in_dir)/assets -type f -name "*")' ] | 195 'files': [ '<!@(find <(java_in_dir)/assets -type f -name "*")' ] |
194 }, | 196 }, |
195 ], | 197 ], |
196 'includes': [ '../build/java_apk.gypi' ], | 198 'includes': [ '../build/java_apk.gypi' ], |
197 }, | 199 }, |
198 ], | 200 ], |
199 } | 201 } |
OLD | NEW |