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', |
(...skipping 10 matching lines...) Expand all Loading... |
21 '../../skia/config', | 21 '../../skia/config', |
22 '<(SHARED_INTERMEDIATE_DIR)/android_webview', | 22 '<(SHARED_INTERMEDIATE_DIR)/android_webview', |
23 ], | 23 ], |
24 'sources': [ | 24 'sources': [ |
25 'android_protocol_handler.cc', | 25 'android_protocol_handler.cc', |
26 'android_protocol_handler.h', | 26 'android_protocol_handler.h', |
27 'android_webview_jni_registrar.cc', | 27 'android_webview_jni_registrar.cc', |
28 'android_webview_jni_registrar.h', | 28 'android_webview_jni_registrar.h', |
29 'aw_browser_dependency_factory.cc', | 29 'aw_browser_dependency_factory.cc', |
30 'aw_browser_dependency_factory.h', | 30 'aw_browser_dependency_factory.h', |
| 31 'aw_certificate_error_handler_base.cc', |
31 'aw_contents.cc', | 32 'aw_contents.cc', |
32 'aw_contents.h', | 33 'aw_contents.h', |
33 'aw_contents_io_thread_client_impl.cc', | 34 'aw_contents_io_thread_client_impl.cc', |
34 'aw_contents_io_thread_client_impl.h', | 35 'aw_contents_io_thread_client_impl.h', |
35 'aw_geolocation_permission_context.cc', | 36 'aw_geolocation_permission_context.cc', |
36 'aw_geolocation_permission_context.h', | 37 'aw_geolocation_permission_context.h', |
37 'aw_http_auth_handler.cc', | 38 'aw_http_auth_handler.cc', |
38 'aw_http_auth_handler.h', | 39 'aw_http_auth_handler.h', |
39 'aw_javascript_dialog_creator.cc', | 40 'aw_javascript_dialog_creator.cc', |
40 'aw_javascript_dialog_creator.h', | 41 'aw_javascript_dialog_creator.h', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 'variables': { | 85 'variables': { |
85 'jni_gen_dir': 'android_webview', | 86 'jni_gen_dir': 'android_webview', |
86 }, | 87 }, |
87 'includes': [ '../../build/jni_generator.gypi' ], | 88 'includes': [ '../../build/jni_generator.gypi' ], |
88 'dependencies': [ | 89 'dependencies': [ |
89 'android_jar_jni_headers', | 90 'android_jar_jni_headers', |
90 ], | 91 ], |
91 }, | 92 }, |
92 ], | 93 ], |
93 } | 94 } |
OLD | NEW |