diff options
Diffstat (limited to 'python/library.go')
-rw-r--r-- | python/library.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/library.go b/python/library.go index 3a2759174..5071b74cf 100644 --- a/python/library.go +++ b/python/library.go @@ -50,6 +50,10 @@ type bazelPythonLibraryAttributes struct { Srcs_version *string } +type bazelPythonProtoLibraryAttributes struct { + Deps bazel.LabelListAttribute +} + func pythonLibBp2Build(ctx android.TopDownMutatorContext, m *Module) { // TODO(b/182306917): this doesn't fully handle all nested props versioned // by the python version, which would have been handled by the version split @@ -96,6 +100,7 @@ func pythonLibBp2Build(ctx android.TopDownMutatorContext, m *Module) { } baseAttrs := m.makeArchVariantBaseAttributes(ctx) + attrs := &bazelPythonLibraryAttributes{ Srcs: baseAttrs.Srcs, Deps: baseAttrs.Deps, |