Document host_supported and device_supported

Test: none
Change-Id: I151fa044a61a0fc993ce4ea672fda762c15025cc
This commit is contained in:
Colin Cross 2018-11-09 10:36:55 -08:00
parent eeb2c4b03d
commit 4e81d709ab
1 changed files with 4 additions and 1 deletions

View File

@ -280,7 +280,10 @@ type commonProperties struct {
}
type hostAndDeviceProperties struct {
// If set to true, build a variant of the module for the host. Defaults to false.
Host_supported *bool
// If set to true, build a variant of the module for the device. Defaults to true.
Device_supported *bool
}