Merge "Stop exporting java_sdk_library libs in the snapshot"
This commit is contained in:
commit
320055eb8c
|
@ -2386,9 +2386,6 @@ type sdkLibrarySdkMemberProperties struct {
|
||||||
// Scope to per scope properties.
|
// Scope to per scope properties.
|
||||||
Scopes map[*apiScope]scopeProperties
|
Scopes map[*apiScope]scopeProperties
|
||||||
|
|
||||||
// Additional libraries that the exported stubs libraries depend upon.
|
|
||||||
Libs []string
|
|
||||||
|
|
||||||
// The Java stubs source files.
|
// The Java stubs source files.
|
||||||
Stub_srcs []string
|
Stub_srcs []string
|
||||||
|
|
||||||
|
@ -2440,7 +2437,6 @@ func (s *sdkLibrarySdkMemberProperties) PopulateFromVariant(ctx android.SdkMembe
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
s.Libs = sdk.properties.Libs
|
|
||||||
s.Naming_scheme = sdk.commonSdkLibraryProperties.Naming_scheme
|
s.Naming_scheme = sdk.commonSdkLibraryProperties.Naming_scheme
|
||||||
s.Shared_library = proptools.BoolPtr(sdk.sharedLibrary())
|
s.Shared_library = proptools.BoolPtr(sdk.sharedLibrary())
|
||||||
s.Compile_dex = sdk.dexProperties.Compile_dex
|
s.Compile_dex = sdk.dexProperties.Compile_dex
|
||||||
|
@ -2505,8 +2501,4 @@ func (s *sdkLibrarySdkMemberProperties) AddToPropertySet(ctx android.SdkMemberCo
|
||||||
}
|
}
|
||||||
propertySet.AddProperty("doctag_files", dests)
|
propertySet.AddProperty("doctag_files", dests)
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(s.Libs) > 0 {
|
|
||||||
propertySet.AddPropertyWithTag("libs", s.Libs, ctx.SnapshotBuilder().SdkMemberReferencePropertyTag(false))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue