Fix: duplicated definition of llndk_headers module

A llndk_headers module was double defined; one as a header lib and the
other as a static lib. Since llndk_headers is a header lib, the static
lib is now deleted.

Bug: 70617292
Test: build. (TestLlndkHeaders added)
Change-Id: I1a3e9d1a73616ea4faf03664a7a4b03bd5955629
This commit is contained in:
Jiyong Park
2017-12-14 19:54:34 +09:00
parent 7dd8778e48
commit a46a4d5a13
3 changed files with 33 additions and 2 deletions

View File

@@ -191,7 +191,6 @@ func (headers *llndkHeadersDecorator) Name(name string) string {
func llndkHeadersFactory() android.Module {
module, library := NewLibrary(android.DeviceSupported)
library.HeaderOnly()
library.setStatic()
decorator := &llndkHeadersDecorator{
libraryDecorator: library,