Add some friendly error messages for java_sdk_library.

am: 8959e149b7

Change-Id: Ic149e3ba2f6ef398de9b3adf40d85f88f4f260a7
This commit is contained in:
Anton Hansson
2018-04-30 23:59:55 -07:00
committed by android-build-merger

View File

@@ -485,6 +485,13 @@ func javaSdkLibraries(config android.Config) *[]string {
// once for public API level and once for system API level
func sdkLibraryMutator(mctx android.TopDownMutatorContext) {
if module, ok := mctx.Module().(*sdkLibrary); ok {
if module.properties.Srcs == nil {
mctx.PropertyErrorf("srcs", "java_sdk_library must specify srcs")
}
if module.properties.Api_packages == nil {
mctx.PropertyErrorf("api_packages", "java_sdk_library must specify api_packages")
}
// for public API stubs
module.createStubsLibrary(mctx, apiScopePublic)
module.createDocs(mctx, apiScopePublic)