diff options
author | Harvey Yang <chenghaoyang@chromium.org> | 2023-02-08 03:33:17 +0000 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-02-10 00:47:42 +0200 |
commit | 7a44534c4f377a847bd68d3f1c63ca0d15ce2548 (patch) | |
tree | 7f481d864b7b61d38fea8d8f05a9f365fa1587fc /src/android/jpeg | |
parent | b64fa1363c289936da145fb8faf474838b514854 (diff) |
android: jpeg: Add meson.build in src/android/jpeg
To further control sources in jpeg to build based on the platform, this
patch adds meson.build in src/android/jpeg directory.
Signed-off-by: Harvey Yang <chenghaoyang@chromium.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Han-Lin Chen <hanlinchen@chromium.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/android/jpeg')
-rw-r--r-- | src/android/jpeg/meson.build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/android/jpeg/meson.build b/src/android/jpeg/meson.build new file mode 100644 index 00000000..08397a87 --- /dev/null +++ b/src/android/jpeg/meson.build @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: CC0-1.0 + +android_hal_sources += files([ + 'encoder_libjpeg.cpp', + 'exif.cpp', + 'post_processor_jpeg.cpp', + 'thumbnailer.cpp' +]) |