Merge "Clarify a bit more what apex_available means." am: dca59a516d am: b7be1acd0b

Change-Id: I81d2cffeb8f7fc12b1cd90304427587f3dc60430
This commit is contained in:
Automerger Merge Worker
2020-01-20 13:22:23 +00:00

View File

@@ -82,7 +82,10 @@ type ApexModule interface {
}
type ApexProperties struct {
// Availability of this module in APEXes. Only the listed APEXes can include this module.
// Availability of this module in APEXes. Only the listed APEXes can contain
// this module. If the module has stubs then other APEXes and the platform may
// access it through them (subject to visibility).
//
// "//apex_available:anyapex" is a pseudo APEX name that matches to any APEX.
// "//apex_available:platform" refers to non-APEX partitions like "system.img".
// Default is ["//apex_available:platform", "//apex_available:anyapex"].