| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 import("//components/spellcheck/spellcheck_build_features.gni") | 7 import("//components/spellcheck/spellcheck_build_features.gni") |
| 8 | 8 |
| 9 source_set("native") { | 9 source_set("native") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "aw_form_database.cc", | 61 "aw_form_database.cc", |
| 62 "aw_form_database.h", | 62 "aw_form_database.h", |
| 63 "aw_gl_functor.cc", | 63 "aw_gl_functor.cc", |
| 64 "aw_gl_functor.h", | 64 "aw_gl_functor.h", |
| 65 "aw_http_auth_handler.cc", | 65 "aw_http_auth_handler.cc", |
| 66 "aw_http_auth_handler.h", | 66 "aw_http_auth_handler.h", |
| 67 "aw_locale_manager_impl.cc", | 67 "aw_locale_manager_impl.cc", |
| 68 "aw_locale_manager_impl.h", | 68 "aw_locale_manager_impl.h", |
| 69 "aw_media_url_interceptor.cc", | 69 "aw_media_url_interceptor.cc", |
| 70 "aw_media_url_interceptor.h", | 70 "aw_media_url_interceptor.h", |
| 71 "aw_metrics_switch.cc", | 71 "aw_metrics_service_client_impl.cc", |
| 72 "aw_metrics_switch.h", | 72 "aw_metrics_service_client_impl.h", |
| 73 "aw_pdf_exporter.cc", | 73 "aw_pdf_exporter.cc", |
| 74 "aw_pdf_exporter.h", | 74 "aw_pdf_exporter.h", |
| 75 "aw_picture.cc", | 75 "aw_picture.cc", |
| 76 "aw_picture.h", | 76 "aw_picture.h", |
| 77 "aw_quota_manager_bridge_impl.cc", | 77 "aw_quota_manager_bridge_impl.cc", |
| 78 "aw_quota_manager_bridge_impl.h", | 78 "aw_quota_manager_bridge_impl.h", |
| 79 "aw_resource.cc", | 79 "aw_resource.cc", |
| 80 "aw_settings.cc", | 80 "aw_settings.cc", |
| 81 "aw_settings.h", | 81 "aw_settings.h", |
| 82 "aw_web_contents_delegate.cc", | 82 "aw_web_contents_delegate.cc", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 generate_jar_jni("cancellation_signal_android_jar_jni_headers") { | 161 generate_jar_jni("cancellation_signal_android_jar_jni_headers") { |
| 162 classes = [ "android/os/CancellationSignal.class" ] | 162 classes = [ "android/os/CancellationSignal.class" ] |
| 163 jni_package = "android_webview" | 163 jni_package = "android_webview" |
| 164 } | 164 } |
| 165 | 165 |
| 166 java_cpp_enum("aw_permission_request_resource") { | 166 java_cpp_enum("aw_permission_request_resource") { |
| 167 sources = [ | 167 sources = [ |
| 168 "permission/aw_permission_request.h", | 168 "permission/aw_permission_request.h", |
| 169 ] | 169 ] |
| 170 } | 170 } |
| OLD | NEW |