1
0
Fork 0
android_external_drm_hwcomp.../hwc3/meson.build
Drew Davenport d34c094030 drm_hwcomposer: Remove obsolete HWC2<->HWC3 conversion functions
With removal of HWC2 usage from internal layers, these functions are no
longer needed.

Change-Id: Id57bd56307a0e5c078e1a10c3b592e8a8e781c97
2025-05-23 09:01:32 -06:00

32 lines
700 B
Meson

src_hwc3 = files(
'ComposerClient.cpp',
'Composer.cpp',
'DrmHwcThree.cpp',
'service.cpp',
)
executable(
'android.hardware.composer.hwc3-service.drm',
src_hwc3,
cpp_args : common_cpp_flags + hwc2_cpp_flags,
dependencies : deps,
install : true,
link_whole: [drmhwc_common, drmhwc_hwc2_common],
install_dir : get_option('bindir') / 'hw',
include_directories: inc_include,
)
configure_file(
input: 'hwc3-drm.rc',
output: '@PLAINNAME@',
copy: true,
install_dir: get_option('sysconfdir') / 'init',
)
configure_file(
input: 'hwc3-drm.xml',
output: '@PLAINNAME@',
copy: true,
install_dir: get_option('sysconfdir') / 'vintf' / 'manifest',
)