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

Side by Side Diff: android_webview/android_webview.gyp

Issue 11830043: Move content/components/navigation_interception to src/components (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 7 years, 11 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/DEPS » ('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) 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 ], 93 ],
94 'action': ['python', '<(repack_path)', '<@(_outputs)', 94 'action': ['python', '<(repack_path)', '<@(_outputs)',
95 '<@(pak_inputs)'], 95 '<@(pak_inputs)'],
96 }], 96 }],
97 }, 97 },
98 { 98 {
99 'target_name': 'android_webview_common', 99 'target_name': 'android_webview_common',
100 'type': 'static_library', 100 'type': 'static_library',
101 'dependencies': [ 101 'dependencies': [
102 '../android_webview/native/webview_native.gyp:webview_native', 102 '../android_webview/native/webview_native.gyp:webview_native',
103 '../components/components.gyp:navigation_interception',
103 '../components/components.gyp:web_contents_delegate_android', 104 '../components/components.gyp:web_contents_delegate_android',
104 '../content/content.gyp:content', 105 '../content/content.gyp:content',
105 '../content/content.gyp:navigation_interception',
106 '../skia/skia.gyp:skia', 106 '../skia/skia.gyp:skia',
107 'android_webview_pak', 107 'android_webview_pak',
108 ], 108 ],
109 'include_dirs': [ 109 'include_dirs': [
110 '..', 110 '..',
111 '../skia/config', 111 '../skia/config',
112 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/', 112 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/',
113 ], 113 ],
114 'sources': [ 114 'sources': [
115 'browser/aw_browser_context.cc', 115 'browser/aw_browser_context.cc',
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 'renderer/aw_render_process_observer.cc', 180 'renderer/aw_render_process_observer.cc',
181 'renderer/aw_render_process_observer.h', 181 'renderer/aw_render_process_observer.h',
182 'renderer/aw_render_view_ext.cc', 182 'renderer/aw_render_view_ext.cc',
183 'renderer/aw_render_view_ext.h', 183 'renderer/aw_render_view_ext.h',
184 ], 184 ],
185 }, 185 },
186 { 186 {
187 'target_name': 'android_webview_java', 187 'target_name': 'android_webview_java',
188 'type': 'none', 188 'type': 'none',
189 'dependencies': [ 189 'dependencies': [
190 '../components/components.gyp:navigation_interception_java',
191 '../components/components.gyp:web_contents_delegate_android_java',
190 '../content/content.gyp:content_java', 192 '../content/content.gyp:content_java',
191 '../content/content.gyp:navigation_interception_java',
192 '../components/components.gyp:web_contents_delegate_android_java',
193 '../ui/ui.gyp:ui_java', 193 '../ui/ui.gyp:ui_java',
194 ], 194 ],
195 'variables': { 195 'variables': {
196 'package_name': 'android_webview_java', 196 'package_name': 'android_webview_java',
197 'java_in_dir': '../android_webview/java', 197 'java_in_dir': '../android_webview/java',
198 }, 198 },
199 'includes': [ '../build/java.gypi' ], 199 'includes': [ '../build/java.gypi' ],
200 }, 200 },
201 { 201 {
202 'target_name': 'android_webview_apk', 202 'target_name': 'android_webview_apk',
203 'type': 'none', 203 'type': 'none',
204 'dependencies': [ 204 'dependencies': [
205 '../base/base.gyp:base_java', 205 '../base/base.gyp:base_java',
206 '../components/components.gyp:navigation_interception_java',
206 '../components/components.gyp:web_contents_delegate_android_java', 207 '../components/components.gyp:web_contents_delegate_android_java',
207 '../content/content.gyp:content_java', 208 '../content/content.gyp:content_java',
208 '../content/content.gyp:navigation_interception_java',
209 '../media/media.gyp:media_java', 209 '../media/media.gyp:media_java',
210 '../net/net.gyp:net_java', 210 '../net/net.gyp:net_java',
211 '../ui/ui.gyp:ui_java', 211 '../ui/ui.gyp:ui_java',
212 'libwebviewchromium', 212 'libwebviewchromium',
213 ], 213 ],
214 'variables': { 214 'variables': {
215 'package_name': 'android_webview', 215 'package_name': 'android_webview',
216 'apk_name': 'AndroidWebView', 216 'apk_name': 'AndroidWebView',
217 'manifest_package_name': 'org.chromium.android_webview', 217 'manifest_package_name': 'org.chromium.android_webview',
218 'java_in_dir': '../android_webview/java', 218 'java_in_dir': '../android_webview/java',
219 'native_libs_paths': ['<(SHARED_LIB_DIR)/libwebviewchromium.so'], 219 'native_libs_paths': ['<(SHARED_LIB_DIR)/libwebviewchromium.so'],
220 }, 220 },
221 'includes': [ '../build/java_apk.gypi' ], 221 'includes': [ '../build/java_apk.gypi' ],
222 }, 222 },
223 ], 223 ],
224 } 224 }
OLDNEW
« no previous file with comments | « android_webview/DEPS ('k') | android_webview/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698