summaryrefslogtreecommitdiff
path: root/src/android/cros/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/cros/meson.build')
-rw-r--r--src/android/cros/meson.build13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/android/cros/meson.build b/src/android/cros/meson.build
new file mode 100644
index 00000000..35995dd8
--- /dev/null
+++ b/src/android/cros/meson.build
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: CC0-1.0
+
+if get_option('android_platform') != 'cros'
+ subdir_done()
+endif
+
+android_hal_sources += files([
+ 'camera3_hal.cpp',
+])
+
+android_deps += dependency('libcros_camera')
+
+android_cpp_args += ['-DOS_CHROMEOS']