Merge "Remove api_srcs property from java_sdk_library"
am: bb7c5d4f69
Change-Id: Ib9ce3ef94f18a29bb1a4dd8fca0ec9a21f9cbd6e
This commit is contained in:
commit
5a8ab0f617
|
@ -79,9 +79,6 @@ func init() {
|
|||
}
|
||||
|
||||
type sdkLibraryProperties struct {
|
||||
// list of optional source files that are part of API but not part of runtime library.
|
||||
Api_srcs []string `android:"arch_variant"`
|
||||
|
||||
// List of Java libraries that will be in the classpath when building stubs
|
||||
Stub_only_libs []string `android:"arch_variant"`
|
||||
|
||||
|
@ -461,7 +458,6 @@ func (module *SdkLibrary) createDocs(mctx android.LoadHookContext, apiScope apiS
|
|||
|
||||
props.Name = proptools.StringPtr(module.docsName(apiScope))
|
||||
props.Srcs = append(props.Srcs, module.Library.Module.properties.Srcs...)
|
||||
props.Srcs = append(props.Srcs, module.sdkLibraryProperties.Api_srcs...)
|
||||
props.Sdk_version = proptools.StringPtr(sdkVersion)
|
||||
props.Installable = proptools.BoolPtr(false)
|
||||
// A droiddoc module has only one Libs property and doesn't distinguish between
|
||||
|
|
Loading…
Reference in New Issue