blob: f7f20b452ce92223fd9686b37da81140e7bbed56 [file] [log] [blame]
Alec Mouri671d0f52019-09-05 13:59:19 -07001// Copyright 2019 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
Bob Badour3306e492021-02-25 15:35:37 -080015package {
16 default_applicable_licenses: [
17 "frameworks_native_libs_nativedisplay_license",
18 ],
John Reck38bc8a82024-02-21 17:08:27 -050019 default_team: "trendy_team_android_core_graphics_stack",
Bob Badour3306e492021-02-25 15:35:37 -080020}
21
22// Added automatically by a large-scale-change
23// See: http://go/android-license-faq
24license {
25 name: "frameworks_native_libs_nativedisplay_license",
26 visibility: [":__subpackages__"],
27 license_kinds: [
28 "SPDX-license-identifier-Apache-2.0",
29 ],
30 license_text: [
31 "NOTICE",
32 ],
33}
34
Alec Mouri671d0f52019-09-05 13:59:19 -070035cc_library_headers {
36 name: "libnativedisplay_headers",
Huihong Luo0a81aa32022-02-22 16:02:36 -080037 export_include_dirs: ["include"],
Alec Mouri671d0f52019-09-05 13:59:19 -070038}
39
Alec Mouri271de042020-04-27 22:38:19 -070040cc_library_shared {
Alec Mouri671d0f52019-09-05 13:59:19 -070041 name: "libnativedisplay",
42 export_include_dirs: [
43 "include",
Alec Mouri271de042020-04-27 22:38:19 -070044 "include-private",
Alec Mouri671d0f52019-09-05 13:59:19 -070045 ],
46
Alec Mouri671d0f52019-09-05 13:59:19 -070047 cflags: [
48 "-Wall",
49 "-Werror",
50 "-Wno-enum-compare",
51 "-Wno-unused-function",
52 ],
53
Alec Mourid9ff3272019-11-19 16:23:59 -080054 version_script: "libnativedisplay.map.txt",
55
Alec Mouri671d0f52019-09-05 13:59:19 -070056 srcs: [
Huihong Luo0a81aa32022-02-22 16:02:36 -080057 ":libgui_frame_event_aidl",
Alec Mouricc445222019-10-22 10:19:17 -070058 "AChoreographer.cpp",
Alec Mouri671d0f52019-09-05 13:59:19 -070059 "ADisplay.cpp",
Stan Iliev5d6bdb02020-01-13 11:19:44 -050060 "surfacetexture/surface_texture.cpp",
61 "surfacetexture/SurfaceTexture.cpp",
62 "surfacetexture/ImageConsumer.cpp",
63 "surfacetexture/EGLConsumer.cpp",
Alec Mouri671d0f52019-09-05 13:59:19 -070064 ],
65
66 shared_libs: [
Alec Mouri671d0f52019-09-05 13:59:19 -070067 "libgui",
68 "liblog",
Alec Mouri46170512019-11-20 11:04:55 -080069 "libnativewindow",
Alec Mouri671d0f52019-09-05 13:59:19 -070070 "libui",
71 "libutils",
Stan Iliev5d6bdb02020-01-13 11:19:44 -050072 "libcutils",
73 "libEGL",
74 "libGLESv2",
Alec Mouri671d0f52019-09-05 13:59:19 -070075 ],
76
Ady Abraham19260522023-09-22 12:18:53 -070077 static_libs: ["libguiflags"],
78
Orion Hodsone53587b2021-02-02 15:33:33 +000079 export_header_lib_headers: ["jni_headers"],
Alec Mouri271de042020-04-27 22:38:19 -070080
Alec Mouri671d0f52019-09-05 13:59:19 -070081 header_libs: [
Orion Hodsone53587b2021-02-02 15:33:33 +000082 "jni_headers",
Alec Mouri671d0f52019-09-05 13:59:19 -070083 "libnativedisplay_headers",
Orion Hodsone53587b2021-02-02 15:33:33 +000084 "libnativehelper_header_only",
Alec Mouri671d0f52019-09-05 13:59:19 -070085 ],
Alec Mouri671d0f52019-09-05 13:59:19 -070086}