From 6348056fd370cafb1e2b20d6476f83d79353d247 Mon Sep 17 00:00:00 2001 From: Kiyoung Kim Date: Wed, 21 Oct 2020 10:28:02 +0900 Subject: [PATCH] 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 --- linkerconfig/proto/linker_config.proto | 6 ++++++ 1 file changed, 6 insertions(+) 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; }