Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial submit for camera hal in vendor #123

Open
wants to merge 1 commit into
base: celadon/s/mr0/master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading