Merge "Fix: HideFromMake is not registered to llndk_* module types" into qt-dev

This commit is contained in:
Jesse Hall 2019-04-19 18:18:45 +00:00 committed by Android (Google) Code Review
commit 962462b203
1 changed files with 5 additions and 1 deletions

View File

@ -182,6 +182,7 @@ func NewLLndkStubLibrary() *Module {
module.installer = nil
module.AddProperties(
&module.Properties,
&stub.Properties,
&library.MutatedProperties,
&library.flagExporter.Properties)
@ -215,7 +216,10 @@ func llndkHeadersFactory() android.Module {
module.linker = decorator
module.installer = nil
module.AddProperties(&library.MutatedProperties, &library.flagExporter.Properties)
module.AddProperties(
&module.Properties,
&library.MutatedProperties,
&library.flagExporter.Properties)
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibBoth)