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

Side by Side Diff: android_webview/android_webview.gyp

Issue 11293017: Move navigation interception component to content/components (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add findbugs suppression for compatibility code. Created 8 years, 1 month 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) 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 11 matching lines...) Expand all
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 'lib/main/webview_entry_point.cc', 24 'lib/main/webview_entry_point.cc',
25 ], 25 ],
26 }, 26 },
27 { 27 {
28 'target_name': 'android_webview_common', 28 'target_name': 'android_webview_common',
29 'type': 'static_library', 29 'type': 'static_library',
30 'dependencies': [ 30 'dependencies': [
31 '../content/content.gyp:content', 31 '../content/content.gyp:content',
32 '../content/content.gyp:navigation_interception',
32 '../android_webview/native/webview_native.gyp:webview_native', 33 '../android_webview/native/webview_native.gyp:webview_native',
33 '../chrome/browser/component/components.gyp:navigation_interception',
34 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d', 34 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d',
35 '../chrome/browser/component/components.gyp:browser_component_jni_header s', 35 '../chrome/browser/component/components.gyp:browser_component_jni_header s',
36 '../ui/ui.gyp:ui_resources', 36 '../ui/ui.gyp:ui_resources',
37 ], 37 ],
38 'include_dirs': [ 38 'include_dirs': [
39 '..', 39 '..',
40 '../skia/config', 40 '../skia/config',
41 ], 41 ],
42 'sources': [ 42 'sources': [
43 'browser/aw_browser_context.cc', 43 'browser/aw_browser_context.cc',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 'renderer/aw_render_process_observer.h', 98 'renderer/aw_render_process_observer.h',
99 'renderer/aw_render_view_ext.cc', 99 'renderer/aw_render_view_ext.cc',
100 'renderer/aw_render_view_ext.h', 100 'renderer/aw_render_view_ext.h',
101 ], 101 ],
102 }, 102 },
103 { 103 {
104 'target_name': 'android_webview_java', 104 'target_name': 'android_webview_java',
105 'type': 'none', 105 'type': 'none',
106 'dependencies': [ 106 'dependencies': [
107 '../content/content.gyp:content_java', 107 '../content/content.gyp:content_java',
108 '../chrome/browser/component/components.gyp:navigation_interception_java ', 108 '../content/content.gyp:navigation_interception_java',
109 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d_java', 109 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d_java',
110 '../ui/ui.gyp:ui_java', 110 '../ui/ui.gyp:ui_java',
111 ], 111 ],
112 'variables': { 112 'variables': {
113 'package_name': 'android_webview_java', 113 'package_name': 'android_webview_java',
114 'java_in_dir': '../android_webview/java', 114 'java_in_dir': '../android_webview/java',
115 }, 115 },
116 'includes': [ '../build/java.gypi' ], 116 'includes': [ '../build/java.gypi' ],
117 }, 117 },
118 { 118 {
119 'target_name': 'android_webview_apk', 119 'target_name': 'android_webview_apk',
120 'type': 'none', 120 'type': 'none',
121 'dependencies': [ 121 'dependencies': [
122 '../base/base.gyp:base_java', 122 '../base/base.gyp:base_java',
123 '../chrome/browser/component/components.gyp:navigation_interception_java ',
124 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d_java', 123 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d_java',
125 '../chrome/chrome_resources.gyp:packed_extra_resources', 124 '../chrome/chrome_resources.gyp:packed_extra_resources',
126 '../chrome/chrome_resources.gyp:packed_resources', 125 '../chrome/chrome_resources.gyp:packed_resources',
127 '../content/content.gyp:content_java', 126 '../content/content.gyp:content_java',
127 '../content/content.gyp:navigation_interception_java',
128 '../media/media.gyp:media_java', 128 '../media/media.gyp:media_java',
129 '../net/net.gyp:net_java', 129 '../net/net.gyp:net_java',
130 '../ui/ui.gyp:ui_java', 130 '../ui/ui.gyp:ui_java',
131 'libwebviewchromium', 131 'libwebviewchromium',
132 ], 132 ],
133 'variables': { 133 'variables': {
134 'package_name': 'android_webview', 134 'package_name': 'android_webview',
135 'apk_name': 'AndroidWebView', 135 'apk_name': 'AndroidWebView',
136 'manifest_package_name': 'org.chromium.android_webview', 136 'manifest_package_name': 'org.chromium.android_webview',
137 'java_in_dir': '../android_webview/java', 137 'java_in_dir': '../android_webview/java',
(...skipping 13 matching lines...) Expand all
151 'copies': [ 151 'copies': [
152 { 152 {
153 'destination': '<(PRODUCT_DIR)/android_webview/assets', 153 'destination': '<(PRODUCT_DIR)/android_webview/assets',
154 'files': [ '<@(input_pak_files)' ] 154 'files': [ '<@(input_pak_files)' ]
155 }, 155 },
156 ], 156 ],
157 'includes': [ '../build/java_apk.gypi' ], 157 'includes': [ '../build/java_apk.gypi' ],
158 }, 158 },
159 ], 159 ],
160 } 160 }
OLDNEW
« no previous file with comments | « android_webview/DEPS ('k') | android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698