With removal of HWC2 usage from internal layers, these functions are no longer needed. Change-Id: Id57bd56307a0e5c078e1a10c3b592e8a8e781c97
32 lines
700 B
Meson
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',
|
|
)
|