diff options
author | 2020-10-21 10:28:02 +0900 | |
---|---|---|
committer | 2020-11-03 16:00:23 +0900 | |
commit | 6348056fd370cafb1e2b20d6476f83d79353d247 (patch) | |
tree | f5f7712c60178d53e5180978587194cd88a62585 /linkerconfig | |
parent | e52c665d7fec4924096c1899ce95487ed4a21d7b (diff) |
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
Diffstat (limited to 'linkerconfig')
-rw-r--r-- | linkerconfig/proto/linker_config.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linkerconfig/proto/linker_config.proto b/linkerconfig/proto/linker_config.proto index 91a596824..fec66c85e 100644 --- a/linkerconfig/proto/linker_config.proto +++ b/linkerconfig/proto/linker_config.proto @@ -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; } |