blob: b46a1debb382252e65c1483ae2261114a5184fa5 [file] [log] [blame]
Daniel Nicoara0a60e4b2017-01-09 12:51:06 -05001cc_library_static {
2 name: "libhwcomposer-client",
Steven Moreland1c8bff22017-04-11 21:25:13 -07003 vendor_available: true,
Steven Moreland48c52242017-03-08 16:11:32 -08004 defaults: ["hidl_defaults"],
Daniel Nicoara0a60e4b2017-01-09 12:51:06 -05005 export_include_dirs: ["."],
6 srcs: ["ComposerClient.cpp"],
Daniel Nicoara0a60e4b2017-01-09 12:51:06 -05007 shared_libs: [
Daniel Nicoara0a60e4b2017-01-09 12:51:06 -05008 "android.hardware.graphics.composer@2.1",
Chia-I Wu2ae85702017-04-20 11:01:18 -07009 "android.hardware.graphics.mapper@2.0",
Daniel Nicoara0a60e4b2017-01-09 12:51:06 -050010 "libbase",
11 "libcutils",
12 "libfmq",
13 "libhardware",
14 "libhidlbase",
15 "libhidltransport",
Daniel Nicoara0a60e4b2017-01-09 12:51:06 -050016 "liblog",
17 "libsync",
18 "libutils",
19 ],
Courtney Goeltzenleuchter5ecd86a2018-01-12 14:00:56 -080020 header_libs: [
21 "android.hardware.graphics.composer@2.1-command-buffer",
22 ],
Daniel Nicoara0a60e4b2017-01-09 12:51:06 -050023}
24
Chia-I Wu7f8d3962016-09-28 21:04:23 +080025cc_library_shared {
26 name: "android.hardware.graphics.composer@2.1-impl",
Steven Moreland48c52242017-03-08 16:11:32 -080027 defaults: ["hidl_defaults"],
Steven Morelanda0da1a12017-02-13 09:59:06 -080028 proprietary: true,
Chia-I Wu7f8d3962016-09-28 21:04:23 +080029 relative_install_path: "hw",
Chia-I Wu16624b62017-02-02 09:03:20 -080030 srcs: ["Hwc.cpp"],
31 static_libs: ["libhwcomposer-client"],
Chia-I Wu7f8d3962016-09-28 21:04:23 +080032 shared_libs: [
Chia-I Wu7f8d3962016-09-28 21:04:23 +080033 "android.hardware.graphics.composer@2.1",
Chia-I Wu2ae85702017-04-20 11:01:18 -070034 "android.hardware.graphics.mapper@2.0",
Chia-I Wu7f8d3962016-09-28 21:04:23 +080035 "libbase",
36 "libcutils",
Chia-I Wubb61a722016-10-24 15:40:20 +080037 "libfmq",
Chia-I Wu7f8d3962016-09-28 21:04:23 +080038 "libhardware",
Yifan Hong6b920e42016-11-16 14:17:58 -080039 "libhidlbase",
40 "libhidltransport",
Chia-I Wu7f8d3962016-09-28 21:04:23 +080041 "liblog",
Chia-I Wubb61a722016-10-24 15:40:20 +080042 "libsync",
Chia-I Wu7f8d3962016-09-28 21:04:23 +080043 "libutils",
Chia-I Wu16e8ed22017-10-19 09:49:03 -070044 "libhwc2on1adapter",
45 "libhwc2onfbadapter",
Chia-I Wu7f8d3962016-09-28 21:04:23 +080046 ],
Courtney Goeltzenleuchter5ecd86a2018-01-12 14:00:56 -080047 header_libs: [
48 "android.hardware.graphics.composer@2.1-command-buffer",
49 ],
Chia-I Wu7f8d3962016-09-28 21:04:23 +080050}
Chia-I Wub0b5a4d2016-10-17 14:56:15 +080051
52cc_binary {
53 name: "android.hardware.graphics.composer@2.1-service",
Steven Moreland48c52242017-03-08 16:11:32 -080054 defaults: ["hidl_defaults"],
Steven Morelanda0da1a12017-02-13 09:59:06 -080055 proprietary: true,
Chia-I Wub0b5a4d2016-10-17 14:56:15 +080056 relative_install_path: "hw",
Chia-I Wu16624b62017-02-02 09:03:20 -080057 srcs: ["service.cpp"],
Chia-I Wub0b5a4d2016-10-17 14:56:15 +080058 init_rc: ["android.hardware.graphics.composer@2.1-service.rc"],
Chia-I Wu16624b62017-02-02 09:03:20 -080059 static_libs: ["libhwcomposer-client"],
Chia-I Wub0b5a4d2016-10-17 14:56:15 +080060 shared_libs: [
Chia-I Wub0b5a4d2016-10-17 14:56:15 +080061 "android.hardware.graphics.composer@2.1",
62 "libbase",
63 "libbinder",
64 "libcutils",
Chia-I Wubb61a722016-10-24 15:40:20 +080065 "libfmq",
Chia-I Wub0b5a4d2016-10-17 14:56:15 +080066 "libhardware",
Yifan Hong6b920e42016-11-16 14:17:58 -080067 "libhidlbase",
68 "libhidltransport",
Chia-I Wub0b5a4d2016-10-17 14:56:15 +080069 "liblog",
Chia-I Wubb61a722016-10-24 15:40:20 +080070 "libsync",
Chia-I Wub0b5a4d2016-10-17 14:56:15 +080071 "libutils",
72 ],
73}