commit | 9e1117bf66873cf1ec66f44b677f4df84b101c35 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Apr 14 02:46:23 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Apr 14 02:46:23 2023 +0000 |
tree | dc338d794374f35d95b3f35c8d5cbdd65c08e55a | |
parent | 3d1b6964ecbc7114bf67dfae175d97dd450e55ae [diff] | |
parent | b2b41d57cd6fe5d38b329cc5437aa8997bcf6553 [diff] |
Merge "Differentiate between public and module-lib stub variants"
diff --git a/cc/cc.go b/cc/cc.go index 9c555a1..ae82b9e 100644 --- a/cc/cc.go +++ b/cc/cc.go
@@ -1858,6 +1858,10 @@ if c.SplitPerApiLevel() { subName += "." + c.SdkVersion() } + } else if c.IsStubs() && c.IsSdkVariant() { + // Public API surface (NDK) + // Add a suffix to this stub variant to distinguish it from the module-lib stub variant. + subName = sdkSuffix } return subName