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

Side by Side Diff: android_webview/android_webview.gyp

Issue 12609013: [android_webview] Build test code against the shell APK. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix up minsdkversoin Created 7 years, 9 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) 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 '../components/components.gyp:navigation_interception_java', 186 '../components/components.gyp:navigation_interception_java',
187 '../components/components.gyp:web_contents_delegate_android_java', 187 '../components/components.gyp:web_contents_delegate_android_java',
188 '../content/content.gyp:content_java', 188 '../content/content.gyp:content_java',
189 '../ui/ui.gyp:ui_java', 189 '../ui/ui.gyp:ui_java',
190 ], 190 ],
191 'variables': { 191 'variables': {
192 'java_in_dir': '../android_webview/java', 192 'java_in_dir': '../android_webview/java',
193 }, 193 },
194 'includes': [ '../build/java.gypi' ], 194 'includes': [ '../build/java.gypi' ],
195 }, 195 },
196 {
197 'target_name': 'android_webview_apk',
198 'type': 'none',
199 'dependencies': [
200 '../base/base.gyp:base_java',
201 '../components/components.gyp:navigation_interception_java',
202 '../components/components.gyp:web_contents_delegate_android_java',
203 '../content/content.gyp:content_java',
204 '../media/media.gyp:media_java',
205 '../net/net.gyp:net_java',
206 '../ui/ui.gyp:ui_java',
207 'libwebviewchromium',
208 ],
209 'variables': {
210 'apk_name': 'AndroidWebView',
211 'manifest_package_name': 'org.chromium.android_webview',
212 'java_in_dir': '../android_webview/java',
213 'native_libs_paths': ['<(SHARED_LIB_DIR)/libwebviewchromium.so'],
214 'additional_input_paths': [
215 '<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak',
216 ],
217 },
218 'includes': [ '../build/java_apk.gypi' ],
219 },
220 ], 196 ],
221 } 197 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/android_webview_tests.gypi » ('j') | android_webview/test/shell/AndroidManifest.xml » ('J')

Powered by Google App Engine
This is Rietveld 408576698