blob: d40a3b0ba2eb771e739b3ce89bea951f166bd62d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# SPDX-License-Identifier: CC0-1.0
platform = get_option('android_platform')
if platform == 'generic'
android_hal_sources += files(['generic_camera_buffer.cpp',
'generic_frame_buffer_allocator.cpp'])
elif platform == 'cros'
android_hal_sources += files(['cros_camera_buffer.cpp',
'cros_frame_buffer_allocator.cpp'])
android_deps += [dependency('libcros_camera')]
endif
|