Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 620dc3f4 authored by Jooyung Han's avatar Jooyung Han Committed by Gerrit Code Review
Browse files

Merge "Linkerconfig with namespace contribution"

parents efdc4f4d e5b0a0a4
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -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;
}