Merge "Automatically add bootclasspath_fragment contents to sdk"
This commit is contained in:
commit
56d3ea4998
|
@ -32,8 +32,9 @@ func init() {
|
||||||
|
|
||||||
android.RegisterSdkMemberType(&bootclasspathFragmentMemberType{
|
android.RegisterSdkMemberType(&bootclasspathFragmentMemberType{
|
||||||
SdkMemberTypeBase: android.SdkMemberTypeBase{
|
SdkMemberTypeBase: android.SdkMemberTypeBase{
|
||||||
PropertyName: "bootclasspath_fragments",
|
PropertyName: "bootclasspath_fragments",
|
||||||
SupportsSdk: true,
|
SupportsSdk: true,
|
||||||
|
TransitiveSdkMembers: true,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -60,11 +61,22 @@ func (b bootclasspathFragmentContentDependencyTag) ReplaceSourceWithPrebuilt() b
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SdkMemberType causes dependencies added with this tag to be automatically added to the sdk as if
|
||||||
|
// they were specified using java_boot_libs.
|
||||||
|
func (b bootclasspathFragmentContentDependencyTag) SdkMemberType() android.SdkMemberType {
|
||||||
|
return javaBootLibsSdkMemberType
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b bootclasspathFragmentContentDependencyTag) ExportMember() bool {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
// The tag used for the dependency between the bootclasspath_fragment module and its contents.
|
// The tag used for the dependency between the bootclasspath_fragment module and its contents.
|
||||||
var bootclasspathFragmentContentDepTag = bootclasspathFragmentContentDependencyTag{}
|
var bootclasspathFragmentContentDepTag = bootclasspathFragmentContentDependencyTag{}
|
||||||
|
|
||||||
var _ android.ExcludeFromVisibilityEnforcementTag = bootclasspathFragmentContentDepTag
|
var _ android.ExcludeFromVisibilityEnforcementTag = bootclasspathFragmentContentDepTag
|
||||||
var _ android.ReplaceSourceWithPrebuilt = bootclasspathFragmentContentDepTag
|
var _ android.ReplaceSourceWithPrebuilt = bootclasspathFragmentContentDepTag
|
||||||
|
var _ android.SdkMemberTypeDependencyTag = bootclasspathFragmentContentDepTag
|
||||||
|
|
||||||
func IsBootclasspathFragmentContentDepTag(tag blueprint.DependencyTag) bool {
|
func IsBootclasspathFragmentContentDepTag(tag blueprint.DependencyTag) bool {
|
||||||
return tag == bootclasspathFragmentContentDepTag
|
return tag == bootclasspathFragmentContentDepTag
|
||||||
|
|
|
@ -52,7 +52,6 @@ func TestSnapshotWithBootclasspathFragment_ImageName(t *testing.T) {
|
||||||
sdk {
|
sdk {
|
||||||
name: "mysdk",
|
name: "mysdk",
|
||||||
bootclasspath_fragments: ["mybootclasspathfragment"],
|
bootclasspath_fragments: ["mybootclasspathfragment"],
|
||||||
java_boot_libs: ["mybootlib"],
|
|
||||||
}
|
}
|
||||||
|
|
||||||
apex {
|
apex {
|
||||||
|
@ -166,7 +165,6 @@ func TestSnapshotWithBootClasspathFragment_Contents(t *testing.T) {
|
||||||
sdk {
|
sdk {
|
||||||
name: "mysdk",
|
name: "mysdk",
|
||||||
bootclasspath_fragments: ["mybootclasspathfragment"],
|
bootclasspath_fragments: ["mybootclasspathfragment"],
|
||||||
java_boot_libs: ["mybootlib"],
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bootclasspath_fragment {
|
bootclasspath_fragment {
|
||||||
|
@ -288,7 +286,6 @@ func TestSnapshotWithBootclasspathFragment_HiddenAPI(t *testing.T) {
|
||||||
sdk {
|
sdk {
|
||||||
name: "mysdk",
|
name: "mysdk",
|
||||||
bootclasspath_fragments: ["mybootclasspathfragment"],
|
bootclasspath_fragments: ["mybootclasspathfragment"],
|
||||||
java_boot_libs: ["mybootlib"],
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bootclasspath_fragment {
|
bootclasspath_fragment {
|
||||||
|
|
Loading…
Reference in New Issue