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

Side by Side Diff: android_webview/android_webview.gyp

Issue 10913074: Add WebView implementation for CookieManager. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased Created 8 years, 3 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
« no previous file with comments | « android_webview/DEPS ('k') | android_webview/browser/aw_cookie_access_policy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '<(DEPTH)/chrome/chrome.gyp:browser', 13 '<(DEPTH)/chrome/chrome.gyp:browser',
14 '<(DEPTH)/chrome/chrome.gyp:renderer', 14 '<(DEPTH)/chrome/chrome.gyp:renderer',
15 '<(DEPTH)/content/content.gyp:content', 15 '<(DEPTH)/content/content.gyp:content',
16 '<(DEPTH)/android_webview/native/webview_native.gyp:webview_native', 16 '<(DEPTH)/android_webview/native/webview_native.gyp:webview_native',
17 '<(DEPTH)/chrome/browser/component/components.gyp:web_contents_delegate_ android', 17 '<(DEPTH)/chrome/browser/component/components.gyp:web_contents_delegate_ android',
18 '<(DEPTH)/chrome/browser/component/components.gyp:browser_component_jni_ headers', 18 '<(DEPTH)/chrome/browser/component/components.gyp:browser_component_jni_ headers',
19 ], 19 ],
20 'include_dirs': [ 20 'include_dirs': [
21 '<(DEPTH)', 21 '<(DEPTH)',
22 '<(DEPTH)/skia/config', 22 '<(DEPTH)/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/render_view_messages.cc', 27 'common/render_view_messages.cc',
28 'common/render_view_messages.h', 28 'common/render_view_messages.h',
29 'browser/net/aw_network_delegate.cc',
30 'browser/net/aw_network_delegate.h',
29 'browser/renderer_host/aw_render_view_host_ext.cc', 31 'browser/renderer_host/aw_render_view_host_ext.cc',
30 'browser/renderer_host/aw_render_view_host_ext.h', 32 'browser/renderer_host/aw_render_view_host_ext.h',
31 'browser/renderer_host/aw_resource_dispatcher_host_delegate.cc', 33 'browser/renderer_host/aw_resource_dispatcher_host_delegate.cc',
32 'browser/renderer_host/aw_resource_dispatcher_host_delegate.h', 34 'browser/renderer_host/aw_resource_dispatcher_host_delegate.h',
35 'browser/aw_cookie_access_policy.cc',
36 'browser/aw_cookie_access_policy.h',
33 'lib/aw_browser_dependency_factory_impl.cc', 37 'lib/aw_browser_dependency_factory_impl.cc',
34 'lib/aw_browser_dependency_factory_impl.h', 38 'lib/aw_browser_dependency_factory_impl.h',
35 'lib/aw_content_browser_client.cc', 39 'lib/aw_content_browser_client.cc',
36 'lib/aw_content_browser_client.h', 40 'lib/aw_content_browser_client.h',
37 'lib/main/aw_main_delegate.cc', 41 'lib/main/aw_main_delegate.cc',
38 'lib/main/aw_main_delegate.h', 42 'lib/main/aw_main_delegate.h',
39 'lib/main/webview_entry_point.cc', 43 'lib/main/webview_entry_point.cc',
40 'lib/main/webview_stubs.cc', 44 'lib/main/webview_stubs.cc',
41 'renderer/aw_render_view_ext.cc', 45 'renderer/aw_render_view_ext.cc',
42 'renderer/aw_render_view_ext.h', 46 'renderer/aw_render_view_ext.h',
(...skipping 11 matching lines...) Expand all
54 'actions': [ 58 'actions': [
55 { 59 {
56 'action_name': 'libwebview_strip_and_install_in_android', 60 'action_name': 'libwebview_strip_and_install_in_android',
57 'inputs': [ 61 'inputs': [
58 '<(SHARED_LIB_DIR)/libwebview.so', 62 '<(SHARED_LIB_DIR)/libwebview.so',
59 ], 63 ],
60 'outputs': [ 64 'outputs': [
61 '<(android_product_out)/obj/lib/libwebview.so', 65 '<(android_product_out)/obj/lib/libwebview.so',
62 '<(android_product_out)/system/lib/libwebview.so', 66 '<(android_product_out)/system/lib/libwebview.so',
63 '<(android_product_out)/symbols/system/lib/libwebview.so', 67 '<(android_product_out)/symbols/system/lib/libwebview.so',
68 '<(android_product_out)/symbols/data/data/org.chromium.android_webvi ew/lib/libwebview.so',
64 ], 69 ],
65 'action': [ 70 'action': [
66 '<(install_binary_script)', 71 '<(install_binary_script)',
67 '<@(_inputs)', 72 '<@(_inputs)',
68 '<@(_outputs)', 73 '<@(_outputs)',
69 ], 74 ],
70 }, 75 },
71 ], 76 ],
72 }, 77 },
73 { 78 {
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 '-DANDROID_SDK_VERSION=<(android_sdk_version)', 316 '-DANDROID_SDK_VERSION=<(android_sdk_version)',
312 '-DANDROID_GDBSERVER=<(android_gdbserver)', 317 '-DANDROID_GDBSERVER=<(android_gdbserver)',
313 '-buildfile', 318 '-buildfile',
314 '<(DEPTH)/android_webview/javatests/android_webview_test_apk.xml', 319 '<(DEPTH)/android_webview/javatests/android_webview_test_apk.xml',
315 ] 320 ]
316 } 321 }
317 ], 322 ],
318 }, 323 },
319 ], 324 ],
320 } 325 }
OLDNEW
« no previous file with comments | « android_webview/DEPS ('k') | android_webview/browser/aw_cookie_access_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698