Add new properties in linker config format - provideLibs and requireLibs
Add new properties 'provideLibs' and 'requireLibs' to the linker config format so these properties can be used from configuration for system image. Bug: 168262631 Test: cuttlefish & crosshatch boot succeeded Change-Id: Ic496813f7d550aed9afee13e445aa69f56419550
This commit is contained in:
parent
e52c665d7f
commit
6348056fd3
|
@ -28,4 +28,10 @@ message LinkerConfig {
|
|||
|
||||
// Force APEX namespace visible
|
||||
bool visible = 2;
|
||||
|
||||
// Providing libs from the module
|
||||
repeated string provideLibs = 3;
|
||||
|
||||
// Required libs from the module
|
||||
repeated string requireLibs = 4;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue