commit | 28b6a02300745d97bb658250eb21f68dccf36f88 | [log] [tgz] |
---|---|---|
author | Avichal Rakesh <arakesh@google.com> | Wed Jan 25 14:55:31 2023 -0800 |
committer | Avichal Rakesh <arakesh@google.com> | Mon Feb 06 14:18:36 2023 -0800 |
tree | 6c253c3629caed7e8f72b1f9a6dbc6535ab68603 | |
parent | dc29e8e40f472ab3e2079290502e4f3723e2ff5b [diff] |
Add DeviceAsWebcam to general handheld_system DeviceAsWebcam is a new service that lets an Android Device be used as a UVC webcam. The logic in DeviceAsWebcam is protected behind the vendor property `ro.usb.uvc.enabled`. Vendors who support UVC will need to set the property to `true` using something like ``` PRODUCT_VENDOR_PROPERTIES += \ ro.usb.uvc.enabled?=true ``` Bug: 242344221 Test: Manually tested that the makefile is correctly inherited from. Change-Id: I9b8444406f1c02fc8b76caee3e961016d9430a0a
This is the Makefile-based portion of the Android Build System.
For documentation on how to run a build, see Usage.txt
For a list of behavioral changes useful for Android.mk writers see Changes.md
For an outdated reference on Android.mk files, see build-system.html. Our Android.mk files look similar, but are entirely different from the Android.mk files used by the NDK build system. When searching for documentation elsewhere, ensure that it is for the platform build system -- most are not.
This Makefile-based system is in the process of being replaced with Soong, a new build system written in Go. During the transition, all of these makefiles are read by Kati, and generate a ninja file instead of being executed directly. That's combined with a ninja file read by Soong so that the build graph of the two systems can be combined and run as one.