Loosen up heuristics for detecting account creation forms.
[chromium-blink-merge.git] / android_webview / native / webview_native.gyp
blob3e20fc962764945762d813c7ae6f7143e982c122
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
3 # found in the LICENSE file.
5   'variables': {
6     'chromium_code': 1,
7   },
8   'targets': [
9     {
10       'target_name': 'webview_native',
11       'type': 'static_library',
12       'dependencies': [
13         '../../base/base.gyp:base_static',
14         '../../chrome/browser/component/components.gyp:web_contents_delegate_android',
15         'android_webview_native_jni',
16       ],
17       'include_dirs': [
18         '../..',
19         '../../skia/config',
20         '<(SHARED_INTERMEDIATE_DIR)/android_webview',
21       ],
22       'sources': [
23         'android_webview_jni_registrar.cc',
24         'android_webview_jni_registrar.h',
25         'android_web_view_util.cc',
26         'android_web_view_util.h',
27         'aw_browser_dependency_factory.cc',
28         'aw_browser_dependency_factory.h',
29         'aw_contents_container.h',
30         'aw_contents.cc',
31         'aw_contents.h',
32         'aw_web_contents_delegate.cc',
33         'aw_web_contents_delegate.h',
34         'cookie_manager.cc',
35         'cookie_manager.h',
36         'intercepted_request_data.cc',
37         'intercepted_request_data.h',
38       ],
39     },
40     {
41       'target_name': 'android_webview_native_jni',
42       'type': 'none',
43       'sources': [
44           '../java/src/org/chromium/android_webview/AndroidWebViewUtil.java',
45           '../java/src/org/chromium/android_webview/AwContents.java',
46           '../java/src/org/chromium/android_webview/CookieManager.java',
47           '../java/src/org/chromium/android_webview/InterceptedRequestData.java',
48       ],
49       'variables': {
50         'jni_gen_dir': 'android_webview',
51       },
52       'includes': [ '../../build/jni_generator.gypi' ],
53     },
54   ],