diff options
Diffstat (limited to 'bpf/bpf.go')
-rw-r--r-- | bpf/bpf.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bpf/bpf.go b/bpf/bpf.go index 4b0d510c0..01e98f118 100644 --- a/bpf/bpf.go +++ b/bpf/bpf.go @@ -44,7 +44,7 @@ var ( ) type BpfProperties struct { - Srcs []string + Srcs []string `android:"path"` Cflags []string Include_dirs []string } @@ -95,10 +95,6 @@ func (bpf *bpf) GenerateAndroidBuildActions(ctx android.ModuleContext) { } } -func (bpf *bpf) DepsMutator(ctx android.BottomUpMutatorContext) { - android.ExtractSourcesDeps(ctx, bpf.properties.Srcs) -} - func (bpf *bpf) AndroidMk() android.AndroidMkData { return android.AndroidMkData{ Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) { |