From 4e81d709ab984f6cd4ee5e0588eab01f16f9fe72 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Fri, 9 Nov 2018 10:36:55 -0800 Subject: [PATCH] Document host_supported and device_supported Test: none Change-Id: I151fa044a61a0fc993ce4ea672fda762c15025cc --- android/module.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/android/module.go b/android/module.go index 556c73dca..688d8b223 100644 --- a/android/module.go +++ b/android/module.go @@ -280,7 +280,10 @@ type commonProperties struct { } type hostAndDeviceProperties struct { - Host_supported *bool + // 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 }