Skip to content

Commit

Permalink
Initial submit camera hal code in vendor path
Browse files Browse the repository at this point in the history
Need to customize google default camera hal code.

Copied the google camera hal default code to vendor/intel
path.

Tracked-On: OAM-111857
Signed-off-by: shivasku82 <[email protected]>
  • Loading branch information
shivasku82 committed Sep 5, 2023
1 parent 7445d51 commit e3ced0f
Show file tree
Hide file tree
Showing 138 changed files with 37,865 additions and 0 deletions.
12 changes: 12 additions & 0 deletions camera/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## Camera HALs ##
---

## Overview: ##

The camera.* HAL tree is used by the Android camera service to discover and
operate camera devices available on the device.

More details and versioning information can be found within each particular HAL.

More complete information about the Android camera HAL and subsystem can be found at
[source.android.com](http://source.android.com/devices/camera/index.html).
31 changes: 31 additions & 0 deletions camera/common/1.0/default/Android.bp
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

cc_library_static {
name: "[email protected]",
vendor_available: true,
defaults: ["hidl_defaults"],
srcs: [
"CameraModule.cpp",
"CameraMetadata.cpp",
"CameraParameters.cpp",
"VendorTagDescriptor.cpp",
"HandleImporter.cpp",
"Exif.cpp",
],
cflags: [
"-Werror",
"-Wextra",
"-Wall",
],
shared_libs: [
"liblog",
"libgralloctypes",
"libhardware",
"libcamera_metadata",
"[email protected]",
"[email protected]",
"[email protected]",
"libexif",
],
include_dirs: ["system/media/private/camera/include"],
export_include_dirs: ["include"],
}
Loading

0 comments on commit e3ced0f

Please sign in to comment.