| 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 14 matching lines...) Expand all Loading... |
| 25 'include_dirs': [ | 25 'include_dirs': [ |
| 26 '../..', | 26 '../..', |
| 27 '../../skia/config', | 27 '../../skia/config', |
| 28 '<(SHARED_INTERMEDIATE_DIR)/android_webview', | 28 '<(SHARED_INTERMEDIATE_DIR)/android_webview', |
| 29 ], | 29 ], |
| 30 'sources': [ | 30 'sources': [ |
| 31 'android_protocol_handler.cc', | 31 'android_protocol_handler.cc', |
| 32 'android_protocol_handler.h', | 32 'android_protocol_handler.h', |
| 33 'android_webview_jni_registrar.cc', | 33 'android_webview_jni_registrar.cc', |
| 34 'android_webview_jni_registrar.h', | 34 'android_webview_jni_registrar.h', |
| 35 'aw_autofill_external_delegate.cc', |
| 36 'aw_autofill_external_delegate.h', |
| 37 'aw_autofill_manager_delegate.cc', |
| 38 'aw_autofill_manager_delegate.h', |
| 35 'aw_browser_dependency_factory.cc', | 39 'aw_browser_dependency_factory.cc', |
| 36 'aw_browser_dependency_factory.h', | 40 'aw_browser_dependency_factory.h', |
| 37 'aw_contents.cc', | 41 'aw_contents.cc', |
| 38 'aw_contents.h', | 42 'aw_contents.h', |
| 39 'aw_contents_client_bridge.cc', | 43 'aw_contents_client_bridge.cc', |
| 40 'aw_contents_client_bridge.h', | 44 'aw_contents_client_bridge.h', |
| 41 'aw_contents_io_thread_client_impl.cc', | 45 'aw_contents_io_thread_client_impl.cc', |
| 42 'aw_contents_io_thread_client_impl.h', | 46 'aw_contents_io_thread_client_impl.h', |
| 43 'aw_form_database.cc', | 47 'aw_form_database.cc', |
| 44 'aw_form_database.h', | 48 'aw_form_database.h', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 'variables': { | 103 'variables': { |
| 100 'jni_gen_package': 'android_webview', | 104 'jni_gen_package': 'android_webview', |
| 101 }, | 105 }, |
| 102 'includes': [ '../../build/jni_generator.gypi' ], | 106 'includes': [ '../../build/jni_generator.gypi' ], |
| 103 'dependencies': [ | 107 'dependencies': [ |
| 104 'android_jar_jni_headers', | 108 'android_jar_jni_headers', |
| 105 ], | 109 ], |
| 106 }, | 110 }, |
| 107 ], | 111 ], |
| 108 } | 112 } |
| OLD | NEW |