blob: 88decc86c387193cb57c3fd4b65c64de84383e1d [file] [log] [blame]
Dan Willemsenf25ac312018-11-16 15:57:29 -08001//
2// Copyright (C) 2012 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17// This package provides the system interfaces allowing WebView to render.
18
19// Native support library (libwebviewchromium_plat_support.so) - does NOT link
20// any native chromium code.
21cc_library_shared {
22 name: "libwebviewchromium_plat_support",
23
24 srcs: [
Bo Liud6668e72018-12-14 19:37:41 -080025 "draw_functor.cpp",
Dan Willemsenf25ac312018-11-16 15:57:29 -080026 "draw_gl_functor.cpp",
Chris Blume41423392018-11-06 11:47:03 -080027 "functor_utils.cpp",
Dan Willemsenf25ac312018-11-16 15:57:29 -080028 "jni_entry_point.cpp",
29 "graphics_utils.cpp",
30 "graphic_buffer_impl.cpp",
31 ],
32
33 shared_libs: [
34 "libandroidfw",
35 "libandroid_runtime",
36 "libcutils",
37 "libhwui",
38 "liblog",
39 "libui",
40 "libutils",
Chris Blume41423392018-11-06 11:47:03 -080041 "libvulkan",
Dan Willemsenf25ac312018-11-16 15:57:29 -080042 ],
43
44 // To remove warnings from skia header files
45 cflags: ["-Wno-unused-parameter"],
46}