[go: nahoru, domu]

blob: 2be3ca7389607aceefa80507c8401b011a842c48 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.components.module_installer.builder;
/** Provides information about a dynamic feature module. */
public interface ModuleDescriptor {
/** Returns the list of native library names this module requires at runtime. */
String[] getLibraries();
/** Returns the list of PAK resources files this module contains. */
String[] getPaks();
/** Returns whether to auto-load native libraries / resources on getImpl(). */
boolean getLoadNativeOnGetImpl();
}