-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial submit for camera hal in vendor
Signed-off-by: shivasku82 <[email protected]>
- Loading branch information
1 parent
7445d51
commit c333c79
Showing
138 changed files
with
37,865 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"], | ||
} |
Oops, something went wrong.