diff options
author | 2022-08-11 18:05:13 +0000 | |
---|---|---|
committer | 2022-08-12 18:17:07 +0000 | |
commit | 4877c72b47a3523bf308eebca8bd8476610e6155 (patch) | |
tree | aa1a8f68f464f07ac042cf81b33261cfa038a794 /bpf/bpf.go | |
parent | 8c9a3f25964965cf2b03ab0eeb0d3deb03fff873 (diff) |
Add comments to bpf properties
Bug: 240141438
Test: m soong_docs
Change-Id: I86388391da9b6f30f0f3745490641e918d68c046
Diffstat (limited to 'bpf/bpf.go')
-rw-r--r-- | bpf/bpf.go | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/bpf/bpf.go b/bpf/bpf.go index 5d2533fc2..e89cc4ec8 100644 --- a/bpf/bpf.go +++ b/bpf/bpf.go @@ -69,12 +69,23 @@ type BpfModule interface { } type BpfProperties struct { - Srcs []string `android:"path"` - Cflags []string + // source paths to the files. + Srcs []string `android:"path"` + + // additional cflags that should be used to build the bpf variant of + // the C/C++ module. + Cflags []string + + // directories (relative to the root of the source tree) that will + // be added to the include paths using -I. Include_dirs []string - Sub_dir string - // If set to true, generate BTF debug info for maps & programs - Btf *bool + + // optional subdirectory under which this module is installed into. + Sub_dir string + + // if set to true, generate BTF debug info for maps & programs. + Btf *bool + Vendor *bool VendorInternal bool `blueprint:"mutated"` |