blob: d8c5ac9691286393dd837fe32696766cbec061b5 [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: [
25 "draw_gl_functor.cpp",
26 "jni_entry_point.cpp",
27 "graphics_utils.cpp",
28 "graphic_buffer_impl.cpp",
29 ],
30
31 shared_libs: [
32 "libandroidfw",
33 "libandroid_runtime",
34 "libcutils",
35 "libhwui",
36 "liblog",
37 "libui",
38 "libutils",
39 ],
40
41 // To remove warnings from skia header files
42 cflags: ["-Wno-unused-parameter"],
43}