Merge "Make cc.NewLLndkStubLibrary as public"
This commit is contained in:
commit
31c3239038
1 changed files with 2 additions and 2 deletions
|
@ -151,7 +151,7 @@ func (stub *llndkStubDecorator) link(ctx ModuleContext, flags Flags, deps PathDe
|
|||
return stub.libraryDecorator.link(ctx, flags, deps, objs)
|
||||
}
|
||||
|
||||
func newLLndkStubLibrary() *Module {
|
||||
func NewLLndkStubLibrary() *Module {
|
||||
module, library := NewLibrary(android.DeviceSupported)
|
||||
library.BuildOnlyShared()
|
||||
module.stl = nil
|
||||
|
@ -175,7 +175,7 @@ func newLLndkStubLibrary() *Module {
|
|||
}
|
||||
|
||||
func llndkLibraryFactory() android.Module {
|
||||
module := newLLndkStubLibrary()
|
||||
module := NewLLndkStubLibrary()
|
||||
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibBoth)
|
||||
return module
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue