blob: 6f570afe4d345c0d9c8e7a76bcde4caee6b3f69f [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 Parkfe0a8242018-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: [
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070029 "-Weverything",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070030
31 // The static constructors and destructors in this library have not been noted to
32 // introduce significant overheads
33 "-Wno-exit-time-destructors",
34 "-Wno-global-constructors",
35
36 // We only care about compiling as C++14
37 "-Wno-c++98-compat-pedantic",
38
Dan Stoza71bded52016-10-19 11:10:33 -070039 // We are aware of the risks inherent in comparing floats for equality
40 "-Wno-float-equal",
41
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070042 // We use four-character constants for the GraphicBuffer header, and don't care
43 // that they're non-portable as long as they're consistent within one execution
44 "-Wno-four-char-constants",
45
46 // Don't warn about struct padding
47 "-Wno-padded",
Jooyung Han2d3a12a2019-03-04 16:28:48 +090048
49 "-Wno-switch-enum",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070050 ],
51
52 sanitize: {
Ivan Lozano883bcce2017-09-25 10:26:18 -070053 integer_overflow: true,
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070054 },
55
56 srcs: [
Romain Guycaf2ca42016-11-10 11:45:58 -080057 "ColorSpace.cpp",
Courtney Goeltzenleuchtere06ad182017-03-22 13:09:12 -060058 "DebugUtils.cpp",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070059 "Fence.cpp",
Brian Anderson221de2a2016-09-21 16:53:28 -070060 "FenceTime.cpp",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070061 "FrameStats.cpp",
Chia-I Wu5bac7f32017-04-06 12:34:32 -070062 "Gralloc2.cpp",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070063 "GraphicBuffer.cpp",
64 "GraphicBufferAllocator.cpp",
65 "GraphicBufferMapper.cpp",
66 "HdrCapabilities.cpp",
67 "PixelFormat.cpp",
Jooyung Han2d3a12a2019-03-04 16:28:48 +090068 "PublicFormat.cpp",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070069 "Rect.cpp",
70 "Region.cpp",
71 "UiConfig.cpp",
72 ],
73
Jiyong Parkea8c8782017-04-28 18:08:36 +090074 include_dirs: [
75 "frameworks/native/include",
76 ],
77
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070078 shared_libs: [
Chia-I Wu9ba189d2016-09-22 17:13:08 +080079 "android.hardware.graphics.allocator@2.0",
Steven Moreland23aa5b12018-04-04 22:47:04 -070080 "android.hardware.graphics.common@1.1",
Chia-I Wu31669472016-12-07 14:55:24 +080081 "android.hardware.graphics.mapper@2.0",
Chia-I Wudbbe33b2017-09-27 15:22:21 -070082 "android.hardware.graphics.mapper@2.1",
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -060083 "android.hardware.configstore@1.0",
Steven Moreland86f31332017-05-02 12:23:50 -070084 "android.hardware.configstore-utils",
Courtney Goeltzenleuchtere06ad182017-03-22 13:09:12 -060085 "libbase",
Dan Willemsenc7dd2b92016-08-25 17:05:22 -070086 "libcutils",
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 Parke3f35e32018-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]