From 552b5d16d782eb437a5db13472978cd0ce70dd46 Mon Sep 17 00:00:00 2001 From: Jacopo Mondi Date: Fri, 10 May 2019 17:45:11 +0200 Subject: android: Add camera metadata library Import the Android camera metadata library from the ChromiumOS build system. The camera metadata library has been copied from https://chromium.googlesource.com/chromiumos/platform2 at revision 9e65ddd2c496e712f005ada9715decd2ff8e4a03 The original path in the Cros platform2/ repository is: camera/android/libcamera_metadata/src Create a new build target for the camera metadata library to create a static library to link against libcamera. Signed-off-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- src/android/meson.build | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/android/meson.build (limited to 'src/android/meson.build') diff --git a/src/android/meson.build b/src/android/meson.build new file mode 100644 index 00000000..1f242953 --- /dev/null +++ b/src/android/meson.build @@ -0,0 +1,7 @@ +android_camera_metadata_sources = files([ + 'metadata/camera_metadata.c', +]) + +android_camera_metadata = static_library('camera_metadata', + android_camera_metadata_sources, + include_directories : android_includes) -- cgit v1.2.1