diff options
Diffstat (limited to 'android/bazel.go')
-rw-r--r-- | android/bazel.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/android/bazel.go b/android/bazel.go index 183a2f324..aff611660 100644 --- a/android/bazel.go +++ b/android/bazel.go @@ -35,6 +35,12 @@ const ( Bp2BuildTopLevel = "." ) +// Bp2buildAidlLibrary describes a filegroup module that are converted to aidl_library +type Bp2buildAidlLibrary interface { + ShouldConvertToAidlLibrary(ctx BazelConversionPathContext) bool + GetAidlLibraryLabel(ctx BazelConversionPathContext) string +} + type BazelConversionStatus struct { // Information about _all_ bp2build targets generated by this module. Multiple targets are // supported as Soong handles some things within a single target that we may choose to split into |