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

Side by Side Diff: android_webview/native/webview_native.gyp

Issue 15716007: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: char* -> char[] Created 7 years, 6 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 | chrome/chrome_browser.gypi » ('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) 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': 'webview_native', 10 'target_name': 'webview_native',
11 'type': 'static_library', 11 'type': 'static_library',
12 'dependencies': [ 12 'dependencies': [
13 '../../base/base.gyp:base_static', 13 '../../base/base.gyp:base_static',
14 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 14 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
15 '../../components/components.gyp:autofill_browser', 15 '../../components/components.gyp:autofill_browser',
16 '../../components/components.gyp:autofill_content_browser', 16 '../../components/components.gyp:autofill_content_browser',
17 '../../components/components.gyp:web_contents_delegate_android', 17 '../../components/components.gyp:web_contents_delegate_android',
18 '../../cc/cc.gyp:cc', 18 '../../cc/cc.gyp:cc',
19 '../../net/net.gyp:net', 19 '../../net/net.gyp:net',
20 '../../skia/skia.gyp:skia', 20 '../../skia/skia.gyp:skia',
21 '../../ui/ui.gyp:ui', 21 '../../ui/ui.gyp:ui',
22 '../../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', 22 '../../webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
23 '../../webkit/support/webkit_support.gyp:webkit_storage', 23 '../../webkit/storage_browser.gyp:webkit_storage_browser',
24 '../../webkit/storage_common.gyp:webkit_storage_common',
24 'android_webview_native_jni', 25 'android_webview_native_jni',
25 ], 26 ],
26 'include_dirs': [ 27 'include_dirs': [
27 '../..', 28 '../..',
28 '../../skia/config', 29 '../../skia/config',
29 '<(SHARED_INTERMEDIATE_DIR)/android_webview', 30 '<(SHARED_INTERMEDIATE_DIR)/android_webview',
30 ], 31 ],
31 'sources': [ 32 'sources': [
32 'android_protocol_handler.cc', 33 'android_protocol_handler.cc',
33 'android_protocol_handler.h', 34 'android_protocol_handler.h',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'variables': { 101 'variables': {
101 'jni_gen_package': 'android_webview', 102 'jni_gen_package': 'android_webview',
102 }, 103 },
103 'includes': [ '../../build/jni_generator.gypi' ], 104 'includes': [ '../../build/jni_generator.gypi' ],
104 'dependencies': [ 105 'dependencies': [
105 'android_jar_jni_headers', 106 'android_jar_jni_headers',
106 ], 107 ],
107 }, 108 },
108 ], 109 ],
109 } 110 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698