| 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 18 matching lines...) Expand all Loading... |
| 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', |
| 38 'android_webview_jni_registrar.h', | 38 'android_webview_jni_registrar.h', |
| 39 'aw_assets.cc', | |
| 40 'aw_assets.h', | |
| 41 'aw_autofill_client.cc', | 39 'aw_autofill_client.cc', |
| 42 'aw_autofill_client.h', | 40 'aw_autofill_client.h', |
| 43 'aw_browser_dependency_factory.cc', | 41 'aw_browser_dependency_factory.cc', |
| 44 'aw_browser_dependency_factory.h', | 42 'aw_browser_dependency_factory.h', |
| 45 'aw_contents.cc', | 43 'aw_contents.cc', |
| 46 'aw_contents.h', | 44 'aw_contents.h', |
| 47 'aw_contents_client_bridge.cc', | 45 'aw_contents_client_bridge.cc', |
| 48 'aw_contents_client_bridge.h', | 46 'aw_contents_client_bridge.h', |
| 49 'aw_contents_io_thread_client_impl.cc', | 47 'aw_contents_io_thread_client_impl.cc', |
| 50 'aw_contents_io_thread_client_impl.h', | 48 'aw_contents_io_thread_client_impl.h', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'permission/aw_permission_request_delegate.cc', | 88 'permission/aw_permission_request_delegate.cc', |
| 91 'permission/aw_permission_request_delegate.h', | 89 'permission/aw_permission_request_delegate.h', |
| 92 'permission/media_access_permission_request.cc', | 90 'permission/media_access_permission_request.cc', |
| 93 'permission/media_access_permission_request.h', | 91 'permission/media_access_permission_request.h', |
| 94 'permission/permission_request_handler.cc', | 92 'permission/permission_request_handler.cc', |
| 95 'permission/permission_request_handler.h', | 93 'permission/permission_request_handler.h', |
| 96 'permission/permission_request_handler_client.cc', | 94 'permission/permission_request_handler_client.cc', |
| 97 'permission/permission_request_handler_client.h', | 95 'permission/permission_request_handler_client.h', |
| 98 'permission/simple_permission_request.cc', | 96 'permission/simple_permission_request.cc', |
| 99 'permission/simple_permission_request.h', | 97 'permission/simple_permission_request.h', |
| 98 'public/aw_assets.cc', |
| 99 'public/aw_assets.h', |
| 100 'state_serializer.cc', | 100 'state_serializer.cc', |
| 101 'state_serializer.h', | 101 'state_serializer.h', |
| 102 ], | 102 ], |
| 103 'conditions': [ | 103 'conditions': [ |
| 104 ['video_hole==1', { | 104 ['video_hole==1', { |
| 105 'sources': [ | 105 'sources': [ |
| 106 'external_video_surface_container_impl.cc', | 106 'external_video_surface_container_impl.cc', |
| 107 'external_video_surface_container_impl.h', | 107 'external_video_surface_container_impl.h', |
| 108 ], | 108 ], |
| 109 }], | 109 }], |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 'variables': { | 149 'variables': { |
| 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 'cancellation_signal_android_jar_jni_headers', | 154 'cancellation_signal_android_jar_jni_headers', |
| 155 ], | 155 ], |
| 156 }, | 156 }, |
| 157 ], | 157 ], |
| 158 } | 158 } |
| OLD | NEW |