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

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

Issue 539143002: Migrate webkit/browser/ to storage/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 '../../cc/cc.gyp:cc', 15 '../../cc/cc.gyp:cc',
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 '../../content/content.gyp:content_common', 18 '../../content/content.gyp:content_common',
19 '../../media/media.gyp:player_android', 19 '../../media/media.gyp:player_android',
20 '../../net/net.gyp:net', 20 '../../net/net.gyp:net',
21 '../../skia/skia.gyp:skia', 21 '../../skia/skia.gyp:skia',
22 '../../storage/storage_common.gyp:storage_common', 22 '../../storage/storage_common.gyp:storage_common',
23 '../../ui/base/ui_base.gyp:ui_base', 23 '../../ui/base/ui_base.gyp:ui_base',
24 '../../ui/gfx/gfx.gyp:gfx', 24 '../../ui/gfx/gfx.gyp:gfx',
25 '../../ui/gfx/gfx.gyp:gfx_geometry', 25 '../../ui/gfx/gfx.gyp:gfx_geometry',
26 '../../webkit/storage_browser.gyp:storage', 26 '../../storage/storage_browser.gyp:storage',
jamesr 2014/09/05 01:02:30 sort please
27 '../../third_party/boringssl/boringssl.gyp:boringssl', 27 '../../third_party/boringssl/boringssl.gyp:boringssl',
28 'android_webview_native_jni', 28 'android_webview_native_jni',
29 ], 29 ],
30 'include_dirs': [ 30 'include_dirs': [
31 '../..', 31 '../..',
32 '../../skia/config', 32 '../../skia/config',
33 ], 33 ],
34 'sources': [ 34 'sources': [
35 'android_protocol_handler.cc', 35 'android_protocol_handler.cc',
36 'android_protocol_handler.h', 36 'android_protocol_handler.h',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 'variables': { 146 'variables': {
147 'jni_gen_package': 'android_webview', 147 'jni_gen_package': 'android_webview',
148 }, 148 },
149 'includes': [ '../../build/jni_generator.gypi' ], 149 'includes': [ '../../build/jni_generator.gypi' ],
150 'dependencies': [ 150 'dependencies': [
151 'cancellation_signal_android_jar_jni_headers', 151 'cancellation_signal_android_jar_jni_headers',
152 ], 152 ],
153 }, 153 },
154 ], 154 ],
155 } 155 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698