diff options
Diffstat (limited to 'android/api_domain.go')
-rw-r--r-- | android/api_domain.go | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/android/api_domain.go b/android/api_domain.go index bdd4e6fa5..587ceaefa 100644 --- a/android/api_domain.go +++ b/android/api_domain.go @@ -32,17 +32,18 @@ type ApiSurface int // TODO(b/246656800): Reconcile with android.SdkKind const ( - PublicApi ApiSurface = iota - SystemApi - VendorApi + // API surface provided by platform and mainline modules to other mainline modules + ModuleLibApi ApiSurface = iota + PublicApi // Aka NDK + VendorApi // Aka LLNDK ) func (a ApiSurface) String() string { switch a { + case ModuleLibApi: + return "module-libapi" case PublicApi: return "publicapi" - case SystemApi: - return "systemapi" case VendorApi: return "vendorapi" default: |