public interface AndroidPackageable
BuildRule
) that can be included in an Android package
(android_binary, cxx_library or android_prebuilt_aar).Modifier and Type | Method and Description |
---|---|
void |
addToCollector(AndroidPackageableCollector collector)
Add concrete resources to the given collector.
|
Iterable<AndroidPackageable> |
getRequiredPackageables(BuildRuleResolver ruleResolver)
Get the set of packagables that need to be included in any package that includes this object.
|
Iterable<AndroidPackageable> getRequiredPackageables(BuildRuleResolver ruleResolver)
For example, an android_library will need all of its Java deps (except provided_deps), its resource deps, and its native library deps (even though it doesn't need the native library as a build-time dependency). An android_resource might need an android_library that declares a custom view that it references, as well as other android_resource rules that it references directly.
TODO(natthu): Once build rules and buildables are merged, replace this method with another
interface that lets an AndroidPackageable
override the default set which is all deps of
the type AndroidPackageable
.
AndroidPackageable
s that must be included along with this one.void addToCollector(AndroidPackageableCollector collector)
Implementations should call methods on the collector specify what concrete content must be included in an Android package that includes this object. For example, an android_library will add Java classes, an ndk_library will add native libraries, and android_resource will add resource directories.
collector
- The AndroidPackageableCollector
that will receive the content.