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:
Kiyoung Kim 2020-10-21 10:28:02 +09:00
parent e52c665d7f
commit 6348056fd3
1 changed files with 6 additions and 0 deletions

View File

@ -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;
}