Merge "Linkerconfig with namespace contribution" am: 620dc3f4f9 am: fac53d8cff am: f1a58369c4

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1959131

Change-Id: I8ab17c8a3d4956626b9d3be9355932f973cc48f7
This commit is contained in:
Jooyung Han
2022-01-25 16:54:06 +00:00
committed by Automerger Merge Worker

View File

@@ -34,4 +34,16 @@ message LinkerConfig {
// Required libs from the module
repeated string requireLibs = 4;
message Contribution {
// Target namespace where this module contributes the search paths.
string namespace = 1;
// Search paths (inc. permitted paths) that this module contributes.
// Paths should be related to the current module and can use "${LIB}" variable which is
// expanded to "lib" or "lib64".
// e.g. ${LIB}/subdir
repeated string paths = 2;
}
// APEX can contribute search paths to specified namespaces.
repeated Contribution contributions = 5;
}