Merge "Add comments to bpf properties" am: a2f3b77ad5

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2183477

Change-Id: I9cf90f267fb47d4fb8e88d461e40f5c7d225e660
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2022-08-15 12:54:37 +00:00
committed by Automerger Merge Worker

View File

@@ -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"`