Replace core-junit with legacy-test

Bug: 30188076
Test: unused code
Change-Id: If6c27dc61078afbb04218afac678165f63f41166
This commit is contained in:
Paul Duffin
2016-11-30 16:13:09 +00:00
parent 112fd2b9b1
commit 2b67e3b9c1

View File

@@ -70,7 +70,7 @@ type javaBaseProperties struct {
// list of directories that should be excluded from java_resource_dirs
Exclude_java_resource_dirs []string `android:"arch_variant"`
// don't build against the default libraries (core-libart, core-junit,
// don't build against the default libraries (legacy-test, core-junit,
// ext, and framework for device targets)
No_standard_libraries bool
@@ -188,7 +188,7 @@ func (j *javaBase) BootClasspath(ctx android.BaseContext) string {
}
}
var defaultJavaLibraries = []string{"core-libart", "core-junit", "ext", "framework"}
var defaultJavaLibraries = []string{"core-libart", "legacy-test", "ext", "framework"}
func (j *javaBase) DepsMutator(ctx android.BottomUpMutatorContext) {
if j, ok := ctx.Module().(JavaModuleType); ok {