Merge "Skip native_bridge modules when installing vndk snapshot" am: 656833e0c8
am: 441c715fe8
Change-Id: Ie8425f616d0393101637ff2d63ba957fa26a49ea
This commit is contained in:
commit
4fb0004f6b
|
@ -467,6 +467,10 @@ func (c *vndkSnapshotSingleton) GenerateBuildActions(ctx android.SingletonContex
|
|||
return
|
||||
}
|
||||
|
||||
if m.Target().NativeBridge == android.NativeBridgeEnabled {
|
||||
return
|
||||
}
|
||||
|
||||
lib, is_lib := m.linker.(*libraryDecorator)
|
||||
prebuilt_lib, is_prebuilt_lib := m.linker.(*prebuiltLibraryLinker)
|
||||
|
||||
|
|
Loading…
Reference in New Issue