OLD | NEW |
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 '../../net/net.gyp:net', | 19 '../../net/net.gyp:net', |
20 '../../skia/skia.gyp:skia', | 20 '../../skia/skia.gyp:skia', |
21 '../../ui/base/ui_base.gyp:ui_base', | 21 '../../ui/base/ui_base.gyp:ui_base', |
22 '../../ui/gfx/gfx.gyp:gfx', | 22 '../../ui/gfx/gfx.gyp:gfx', |
23 '../../ui/gfx/gfx.gyp:gfx_geometry', | 23 '../../ui/gfx/gfx.gyp:gfx_geometry', |
24 '../../webkit/common/webkit_common.gyp:webkit_common', | 24 '../../webkit/common/webkit_common.gyp:webkit_common', |
25 '../../webkit/storage_browser.gyp:webkit_storage_browser', | 25 '../../webkit/storage_browser.gyp:webkit_storage_browser', |
26 '../../webkit/storage_common.gyp:webkit_storage_common', | 26 '../../webkit/storage_common.gyp:webkit_storage_common', |
27 '../../third_party/openssl/openssl.gyp:openssl', | 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', |
37 'android_webview_jni_registrar.cc', | 37 'android_webview_jni_registrar.cc', |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 'jni_gen_package': 'android_webview', | 150 'jni_gen_package': 'android_webview', |
151 }, | 151 }, |
152 'includes': [ '../../build/jni_generator.gypi' ], | 152 'includes': [ '../../build/jni_generator.gypi' ], |
153 'dependencies': [ | 153 'dependencies': [ |
154 'input_stream_android_jar_jni_headers', | 154 'input_stream_android_jar_jni_headers', |
155 'cancellation_signal_android_jar_jni_headers', | 155 'cancellation_signal_android_jar_jni_headers', |
156 ], | 156 ], |
157 }, | 157 }, |
158 ], | 158 ], |
159 } | 159 } |
OLD | NEW |