diff options
author | Colin Cross <ccross@android.com> | 2017-09-22 15:30:06 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2017-09-30 02:41:25 +0000 |
commit | 8b9d37b40a52928545d233f545dd8a4795ddac12 (patch) | |
tree | d72110125edc43040819ab1375c8d103967bc0a2 /java/java.go | |
parent | 0f37af0c155b2f934e463da9c47af2afe5ee6cef (diff) |
Allow modules with empty sdk_version in unbundled builds
The apps build depends modules that have empty sdk_version. Let the
behavior match make for now.
Test: m -j TARGET_BUILD_APPS=Gallery2
Change-Id: Ie5545d2cd6b1268b0b3392dc0af2e4eb3d38a588
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/java/java.go b/java/java.go index dbb755b9f..805e06a17 100644 --- a/java/java.go +++ b/java/java.go @@ -236,13 +236,7 @@ func decodeSdkDep(ctx android.BaseContext, v string) sdkDep { } } - if ctx.AConfig().UnbundledBuild() { - if v == "" { - if ctx, ok := ctx.(android.ModuleContext); ok { - ctx.AddMissingDependencies([]string{"sdk_version_must_be_set_for_modules_used_in_unbundled_builds"}) - } - return sdkDep{} - } + if ctx.AConfig().UnbundledBuild() && v != "" { return toFile(v) } |