blob: 160505088ff2d3859f73ae2a0f813b2fad0255ac [file] [log] [blame]
Dan Willemsenc7dd2b92016-08-25 17:05:22 -07001// Copyright (C) 2010 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15cc_library_shared {
16 name: "libui",
Jiyong Parkea8c8782017-04-28 18:08:36 +090017 vendor_available: true,
Justin Yun71d6c8852017-07-24 15:19:45 +090018 vndk: {
19 enabled: true,
20 },
Jiyong Parka75d3d62018-04-09 12:16:30 +090021 double_loadable: true,
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070022
23 clang: true,
Chih-Hung Hsiehd66be0a2017-10-05 13:51:32 -070024 cflags: [
25 "-Wall",
26 "-Werror",
27 ],
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070028 cppflags: [
Lloyd Pique3b745782018-08-31 17:34:40 -070029 "-std=c++1z",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070030 "-Weverything",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070031
32 // The static constructors and destructors in this library have not been noted to
33 // introduce significant overheads
34 "-Wno-exit-time-destructors",
35 "-Wno-global-constructors",
36
37 // We only care about compiling as C++14
38 "-Wno-c++98-compat-pedantic",
39
Dan Stoza71bded52016-10-19 11:10:33 -070040 // We are aware of the risks inherent in comparing floats for equality
41 "-Wno-float-equal",
42
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070043 // We use four-character constants for the GraphicBuffer header, and don't care
44 // that they're non-portable as long as they're consistent within one execution
45 "-Wno-four-char-constants",
46
47 // Don't warn about struct padding
48 "-Wno-padded",
49 ],
50
51 sanitize: {
Ivan Lozano883bcce2017-09-25 10:26:18 -070052 integer_overflow: true,
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070053 },
54
55 srcs: [
Romain Guycaf2ca42016-11-10 11:45:58 -080056 "ColorSpace.cpp",
Courtney Goeltzenleuchtere06ad182017-03-22 13:09:12 -060057 "DebugUtils.cpp",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070058 "Fence.cpp",
Brian Anderson221de2a2016-09-21 16:53:28 -070059 "FenceTime.cpp",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070060 "FrameStats.cpp",
Chia-I Wu5bac7f32017-04-06 12:34:32 -070061 "Gralloc2.cpp",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070062 "GraphicBuffer.cpp",
63 "GraphicBufferAllocator.cpp",
64 "GraphicBufferMapper.cpp",
65 "HdrCapabilities.cpp",
66 "PixelFormat.cpp",
67 "Rect.cpp",
68 "Region.cpp",
Peiyong Linefefaac2018-08-17 12:27:51 -070069 "Transform.cpp",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070070 "UiConfig.cpp",
71 ],
72
Jiyong Parkea8c8782017-04-28 18:08:36 +090073 include_dirs: [
74 "frameworks/native/include",
75 ],
76
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070077 shared_libs: [
Chia-I Wu9ba189d2016-09-22 17:13:08 +080078 "android.hardware.graphics.allocator@2.0",
Steven Moreland23aa5b12018-04-04 22:47:04 -070079 "android.hardware.graphics.common@1.1",
Chia-I Wu31669472016-12-07 14:55:24 +080080 "android.hardware.graphics.mapper@2.0",
Chia-I Wudbbe33b2017-09-27 15:22:21 -070081 "android.hardware.graphics.mapper@2.1",
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -060082 "android.hardware.configstore@1.0",
Steven Moreland86f31332017-05-02 12:23:50 -070083 "android.hardware.configstore-utils",
Courtney Goeltzenleuchtere06ad182017-03-22 13:09:12 -060084 "libbase",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070085 "libcutils",
86 "libhardware",
Yifan Hong67a47622016-11-17 13:02:06 -080087 "libhidlbase",
88 "libhidltransport",
Chia-I Wud8091b92017-05-16 14:30:34 -070089 "libhwbinder",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070090 "libsync",
91 "libutils",
David Sehr07562652018-01-17 17:10:18 -080092 "libutilscallstack",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070093 "liblog",
94 ],
Mathias Agopiana9347642017-02-13 16:42:28 -080095
Steven Moreland23aa5b12018-04-04 22:47:04 -070096 export_shared_lib_headers: [
97 "android.hardware.graphics.common@1.1",
98 ],
99
Mathias Agopiana9347642017-02-13 16:42:28 -0800100 static_libs: [
101 "libarect",
Jesse Hall79927812017-03-23 11:03:23 -0700102 "libgrallocusage",
Mathias Agopian1d77b712017-02-17 15:46:13 -0800103 "libmath",
Mathias Agopiana9347642017-02-13 16:42:28 -0800104 ],
105
Mathias Agopian6a3c05b2017-04-27 20:06:55 -0700106 header_libs: [
Chia-I Wudf1badd2017-12-27 11:10:20 -0800107 "libbase_headers",
Mathias Agopian6a3c05b2017-04-27 20:06:55 -0700108 "libnativebase_headers",
Jiyong Park172bd722017-06-21 12:14:18 +0900109 "libhardware_headers",
Jiwen 'Steve' Cai44addfe2018-03-13 21:37:11 -0700110 "libui_headers",
Jiyong Parka75d3d62018-04-09 12:16:30 +0900111 "libpdx_headers",
Mathias Agopian6a3c05b2017-04-27 20:06:55 -0700112 ],
113
Mathias Agopian1d77b712017-02-17 15:46:13 -0800114 export_static_lib_headers: [
115 "libarect",
116 "libmath",
117 ],
Mathias Agopian6a3c05b2017-04-27 20:06:55 -0700118
119 export_header_lib_headers: [
Chia-I Wudf1badd2017-12-27 11:10:20 -0800120 "libbase_headers",
Mathias Agopian6a3c05b2017-04-27 20:06:55 -0700121 "libnativebase_headers",
Jiyong Park172bd722017-06-21 12:14:18 +0900122 "libhardware_headers",
Jiwen 'Steve' Cai44addfe2018-03-13 21:37:11 -0700123 "libui_headers",
Mathias Agopian6a3c05b2017-04-27 20:06:55 -0700124 ],
Dan Willemsenc7dd2b92016-08-25 17:05:22 -0700125}
126
Isaac Chen8d1349a2017-08-31 19:05:25 +0800127cc_library_headers {
128 name: "libui_headers",
129 export_include_dirs: ["include"],
130 vendor_available: true,
Jiwen 'Steve' Cai781a6f02018-04-02 11:55:54 -0700131 target: {
132 vendor: {
133 override_export_include_dirs: ["include_vndk"],
134 },
135 },
Isaac Chen8d1349a2017-08-31 19:05:25 +0800136}
137
Jeff Gaston927acf72017-10-10 14:22:08 -0700138subdirs = [
139 "tests",
140 "tools",
141]