Introduce YamlParser as a helper to convert contents of a yaml file to a tree based structure for easier reading, and to avoid writing parser with raw yaml tokens. The class is based on libyaml, and only support reading but not writing a yaml file. The interface is inspired by Json::Value class from jsoncpp: http://jsoncpp.sourceforge.net/class_json_1_1_value.html Signed-off-by: Han-Lin Chen <hanlinchen@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
47 lines
1.0 KiB
Meson
47 lines
1.0 KiB
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
subdir('tracepoints')
|
|
|
|
libcamera_tracepoint_header = custom_target(
|
|
'tp_header',
|
|
input: ['tracepoints.h.in', tracepoint_files],
|
|
output: 'tracepoints.h',
|
|
command: [gen_tracepoints_header, '@OUTPUT@', '@INPUT@'],
|
|
)
|
|
|
|
libcamera_internal_headers = files([
|
|
'bayer_format.h',
|
|
'byte_stream_buffer.h',
|
|
'camera.h',
|
|
'camera_controls.h',
|
|
'camera_lens.h',
|
|
'camera_sensor.h',
|
|
'camera_sensor_properties.h',
|
|
'control_serializer.h',
|
|
'control_validator.h',
|
|
'delayed_controls.h',
|
|
'device_enumerator.h',
|
|
'device_enumerator_sysfs.h',
|
|
'device_enumerator_udev.h',
|
|
'formats.h',
|
|
'framebuffer.h',
|
|
'ipa_manager.h',
|
|
'ipa_module.h',
|
|
'ipa_proxy.h',
|
|
'ipc_unixsocket.h',
|
|
'mapped_framebuffer.h',
|
|
'media_device.h',
|
|
'media_object.h',
|
|
'pipeline_handler.h',
|
|
'process.h',
|
|
'pub_key.h',
|
|
'request.h',
|
|
'source_paths.h',
|
|
'sysfs.h',
|
|
'v4l2_device.h',
|
|
'v4l2_pixelformat.h',
|
|
'v4l2_subdevice.h',
|
|
'v4l2_videodevice.h',
|
|
'yaml_parser.h',
|
|
])
|