private ImmutableMap<String, Path> getRequiredLibrariesForAbi(
     ImmutableMultimap<String, Path> allLibraries,
     String abi,
     ImmutableSet<String> ignoreLibraries)
     throws IOException {
   return filterLibrariesForAbi(
       exopackageInfo.getNativeLibsInfo().get().getDirectory(),
       allLibraries,
       abi,
       ignoreLibraries);
 }
 private ImmutableMultimap<String, Path> getAllLibraries() throws IOException {
   ExopackageInfo.NativeLibsInfo nativeLibsInfo = exopackageInfo.getNativeLibsInfo().get();
   return parseExopackageInfoMetadata(
       nativeLibsInfo.getMetadata(), nativeLibsInfo.getDirectory(), projectFilesystem);
 }