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

Side by Side Diff: android_webview/android_webview.gyp

Issue 11860014: Android WebView visited link highlighting implementation part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to pass no_disk parameter instead of using delegate. 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
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:auto_login_parser', 103 '../components/components.gyp:auto_login_parser',
104 '../components/components.gyp:navigation_interception', 104 '../components/components.gyp:navigation_interception',
105 '../components/components.gyp:visitedlink_browser',
106 '../components/components.gyp:visitedlink_renderer',
105 '../components/components.gyp:web_contents_delegate_android', 107 '../components/components.gyp:web_contents_delegate_android',
106 '../content/content.gyp:content', 108 '../content/content.gyp:content',
107 '../skia/skia.gyp:skia', 109 '../skia/skia.gyp:skia',
108 'android_webview_pak', 110 'android_webview_pak',
109 ], 111 ],
110 'include_dirs': [ 112 'include_dirs': [
111 '..', 113 '..',
112 '../skia/config', 114 '../skia/config',
113 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/', 115 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/',
114 ], 116 ],
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 'package_name': 'android_webview', 218 'package_name': 'android_webview',
217 'apk_name': 'AndroidWebView', 219 'apk_name': 'AndroidWebView',
218 'manifest_package_name': 'org.chromium.android_webview', 220 'manifest_package_name': 'org.chromium.android_webview',
219 'java_in_dir': '../android_webview/java', 221 'java_in_dir': '../android_webview/java',
220 'native_libs_paths': ['<(SHARED_LIB_DIR)/libwebviewchromium.so'], 222 'native_libs_paths': ['<(SHARED_LIB_DIR)/libwebviewchromium.so'],
221 }, 223 },
222 'includes': [ '../build/java_apk.gypi' ], 224 'includes': [ '../build/java_apk.gypi' ],
223 }, 225 },
224 ], 226 ],
225 } 227 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698