summaryrefslogtreecommitdiff
path: root/devices/EmulatedCamera/hwl/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'devices/EmulatedCamera/hwl/Android.bp')
-rw-r--r--devices/EmulatedCamera/hwl/Android.bp18
1 files changed, 16 insertions, 2 deletions
diff --git a/devices/EmulatedCamera/hwl/Android.bp b/devices/EmulatedCamera/hwl/Android.bp
index be0c8b5..cf276ec 100644
--- a/devices/EmulatedCamera/hwl/Android.bp
+++ b/devices/EmulatedCamera/hwl/Android.bp
@@ -3,8 +3,8 @@ package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
-cc_library_shared {
- name: "libgooglecamerahwl_impl",
+cc_defaults {
+ name: "libgooglecamerahwl_impl_defaults",
owner: "google",
proprietary: true,
srcs: [
@@ -64,3 +64,17 @@ cc_library_shared {
"libgooglecamerahal_headers",
],
}
+
+cc_library_shared {
+ name: "libgooglecamerahwl_impl",
+ defaults: ["libgooglecamerahwl_impl_defaults"],
+}
+
+cc_library_shared {
+ name: "libgooglecamerahwl_impl_fast_scene_cycle",
+ defaults: ["libgooglecamerahwl_impl_defaults"],
+ stem: "libgooglecamerahwl_impl",
+ cflags: ["-DFAST_SCENE_CYCLE"],
+ // Never installed to /vendor, only used inside an APEX.
+ installable: false,
+}