diff options
Diffstat (limited to 'android/filegroup.go')
-rw-r--r-- | android/filegroup.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/filegroup.go b/android/filegroup.go index e5eec87cf..6b1117230 100644 --- a/android/filegroup.go +++ b/android/filegroup.go @@ -120,9 +120,13 @@ func (fg *fileGroup) ConvertWithBp2build(ctx TopDownMutatorContext) { ctx.CreateBazelTargetModule(props, CommonAttributes{Name: fg.Name()}, attrs) } else { if fg.ShouldConvertToProtoLibrary(ctx) { + // TODO(b/246997908): we can remove this tag if we could figure out a + // solution for this bug. + tags := []string{"manual"} attrs := &ProtoAttrs{ Srcs: srcs, Strip_import_prefix: fg.properties.Path, + Tags: tags, } ctx.CreateBazelTargetModule( |