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

Side by Side Diff: android_webview/android_webview.gyp

Issue 11017024: Implement AwContentsClient and remove dependency on chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert unrelated ua change since it depends on override logic. Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
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:web_contents_delegate_androi d', 17 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d',
18 '../chrome/browser/component/components.gyp:browser_component_jni_header s', 18 '../chrome/browser/component/components.gyp:browser_component_jni_header s',
19 ], 19 ],
20 'include_dirs': [ 20 'include_dirs': [
21 '..', 21 '..',
22 '../skia/config', 22 '../skia/config',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 'common/android_webview_message_generator.cc', 25 'common/android_webview_message_generator.cc',
26 'common/android_webview_message_generator.h', 26 'common/android_webview_message_generator.h',
27 'common/aw_content_client.cc',
28 'common/aw_content_client.h',
27 'common/render_view_messages.cc', 29 'common/render_view_messages.cc',
28 'common/render_view_messages.h', 30 'common/render_view_messages.h',
29 'common/url_constants.cc', 31 'common/url_constants.cc',
30 'common/url_constants.h', 32 'common/url_constants.h',
31 'browser/aw_contents_io_thread_client.h', 33 'browser/aw_contents_io_thread_client.h',
32 'browser/aw_cookie_access_policy.cc', 34 'browser/aw_cookie_access_policy.cc',
33 'browser/aw_cookie_access_policy.h', 35 'browser/aw_cookie_access_policy.h',
34 'browser/aw_http_auth_handler_base.cc', 36 'browser/aw_http_auth_handler_base.cc',
35 'browser/aw_http_auth_handler_base.h', 37 'browser/aw_http_auth_handler_base.h',
36 'browser/aw_login_delegate.cc', 38 'browser/aw_login_delegate.cc',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'copies': [ 188 'copies': [
187 { 189 {
188 'destination': '<(PRODUCT_DIR)/android_webview_test/assets', 190 'destination': '<(PRODUCT_DIR)/android_webview_test/assets',
189 'files': [ '<!@(find <(java_in_dir)/assets -type f -name "*")' ] 191 'files': [ '<!@(find <(java_in_dir)/assets -type f -name "*")' ]
190 }, 192 },
191 ], 193 ],
192 'includes': [ '../build/java_apk.gypi' ], 194 'includes': [ '../build/java_apk.gypi' ],
193 }, 195 },
194 ], 196 ],
195 } 197 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698