Remove the no_framework_libs property
Corrects an error message that refers to no_framework_libs. Removes any tests that use no_framework_libs:true where possible as there are duplicate tests for sdk_version:"core_platform". Otherwise, switches them over to use sdk_version:"core_platform". Bug: 134566750 Test: m droid Change-Id: I41abe1a49f5c744e3393ca9cdf0c41888f810c9f
This commit is contained in:
@@ -171,9 +171,6 @@ type JavadocProperties struct {
|
||||
// list of java libraries that will be in the classpath.
|
||||
Libs []string `android:"arch_variant"`
|
||||
|
||||
// don't build against the framework libraries (ext, and framework for device targets)
|
||||
No_framework_libs *bool
|
||||
|
||||
// the java library (in classpath) for documentation that provides java srcs and srcjars.
|
||||
Srcs_lib *string
|
||||
|
||||
@@ -534,10 +531,6 @@ func (j *Javadoc) targetSdkVersion() string {
|
||||
return j.sdkVersion()
|
||||
}
|
||||
|
||||
func (j *Javadoc) noFrameworkLibs() bool {
|
||||
return Bool(j.properties.No_framework_libs)
|
||||
}
|
||||
|
||||
func (j *Javadoc) addDeps(ctx android.BottomUpMutatorContext) {
|
||||
if ctx.Device() {
|
||||
sdkDep := decodeSdkDep(ctx, sdkContext(j))
|
||||
|
Reference in New Issue
Block a user