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 | 7 |
8 source_set("native") { | 8 source_set("native") { |
9 deps = [ | 9 deps = [ |
10 ":native_jni", | 10 ":native_jni", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 "permission/permission_request_handler_client.h", | 109 "permission/permission_request_handler_client.h", |
110 "permission/simple_permission_request.cc", | 110 "permission/simple_permission_request.cc", |
111 "permission/simple_permission_request.h", | 111 "permission/simple_permission_request.h", |
112 "popup_touch_handle_drawable.cc", | 112 "popup_touch_handle_drawable.cc", |
113 "popup_touch_handle_drawable.h", | 113 "popup_touch_handle_drawable.h", |
114 "state_serializer.cc", | 114 "state_serializer.cc", |
115 "state_serializer.h", | 115 "state_serializer.h", |
116 "token_binding_manager_bridge.cc", | 116 "token_binding_manager_bridge.cc", |
117 "token_binding_manager_bridge.h", | 117 "token_binding_manager_bridge.h", |
118 ] | 118 ] |
119 if (enable_video_hole) { | |
120 deps += [ "//components/external_video_surface:external_video_surface" ] | |
121 } | |
122 | 119 |
123 if (enable_spellcheck) { | 120 if (enable_spellcheck) { |
124 deps += [ "//components/spellcheck/browser:browser" ] | 121 deps += [ "//components/spellcheck/browser:browser" ] |
125 } | 122 } |
126 | 123 |
127 libs = [ "jnigraphics" ] | 124 libs = [ "jnigraphics" ] |
128 } | 125 } |
129 | 126 |
130 generate_jni("native_jni") { | 127 generate_jni("native_jni") { |
131 sources = [ | 128 sources = [ |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 generate_jar_jni("cancellation_signal_android_jar_jni_headers") { | 165 generate_jar_jni("cancellation_signal_android_jar_jni_headers") { |
169 classes = [ "android/os/CancellationSignal.class" ] | 166 classes = [ "android/os/CancellationSignal.class" ] |
170 jni_package = "android_webview" | 167 jni_package = "android_webview" |
171 } | 168 } |
172 | 169 |
173 java_cpp_enum("aw_permission_request_resource") { | 170 java_cpp_enum("aw_permission_request_resource") { |
174 sources = [ | 171 sources = [ |
175 "permission/aw_permission_request.h", | 172 "permission/aw_permission_request.h", |
176 ] | 173 ] |
177 } | 174 } |
OLD | NEW |