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

Side by Side Diff: android_webview/android_webview.gyp

Issue 10920033: Implement Android WebView BlockNetworkImages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update ContentSetting to new locking semantics. Add a test that does not require http server. Created 8 years, 2 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/common/aw_utils.h » ('j') | android_webview/common/aw_utils.cc » ('J')
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 '../chrome/chrome.gyp:browser', 13 '../chrome/chrome.gyp:browser',
14 '../chrome/chrome.gyp:renderer', 14 '../chrome/chrome.gyp:renderer',
15 '../content/content.gyp:content', 15 '../content/content.gyp:content',
16 '../android_webview/native/webview_native.gyp:webview_native', 16 '../android_webview/native/webview_native.gyp:webview_native',
17 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d', 17 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d',
18 '../chrome/browser/component/components.gyp:browser_component_jni_header s', 18 '../chrome/browser/component/components.gyp:browser_component_jni_header s',
19 ], 19 ],
20 'include_dirs': [ 20 'include_dirs': [
21 '..', 21 '..',
22 '../skia/config', 22 '../skia/config',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 'common/aw_utils.cc',
26 'common/aw_utils.h',
25 'common/android_webview_message_generator.cc', 27 'common/android_webview_message_generator.cc',
26 'common/android_webview_message_generator.h', 28 'common/android_webview_message_generator.h',
27 'common/render_view_messages.cc', 29 'common/render_view_messages.cc',
28 'common/render_view_messages.h', 30 'common/render_view_messages.h',
29 'browser/aw_cookie_access_policy.cc', 31 'browser/aw_cookie_access_policy.cc',
30 'browser/aw_cookie_access_policy.h', 32 'browser/aw_cookie_access_policy.h',
31 'browser/aw_http_auth_handler_base.cc', 33 'browser/aw_http_auth_handler_base.cc',
32 'browser/aw_http_auth_handler_base.h', 34 'browser/aw_http_auth_handler_base.h',
33 'browser/aw_login_delegate.cc', 35 'browser/aw_login_delegate.cc',
34 'browser/aw_login_delegate.h', 36 'browser/aw_login_delegate.h',
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 'variables': { 174 'variables': {
173 'package_name': 'android_webview_test', 175 'package_name': 'android_webview_test',
174 'apk_name': 'AndroidWebViewTest', 176 'apk_name': 'AndroidWebViewTest',
175 'java_in_dir': '../android_webview/javatests', 177 'java_in_dir': '../android_webview/javatests',
176 'resource_dir': '../res', 178 'resource_dir': '../res',
177 }, 179 },
178 'includes': [ '../build/java_apk.gypi' ], 180 'includes': [ '../build/java_apk.gypi' ],
179 }, 181 },
180 ], 182 ],
181 } 183 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/common/aw_utils.h » ('j') | android_webview/common/aw_utils.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698