Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9820aa6c authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Get default sdk_test.go values from config"

parents f2976304 60405e50
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -15,13 +15,15 @@
package java

import (
	"android/soong/android"
	"path/filepath"
	"reflect"
	"strings"
	"testing"

	"github.com/google/blueprint/proptools"

	"android/soong/android"
	"android/soong/java/config"
)

var classpathTestcases = []struct {
@@ -37,16 +39,16 @@ var classpathTestcases = []struct {
}{
	{
		name:          "default",
		bootclasspath: []string{"core.platform.api.stubs", "core-lambda-stubs"},
		system:        "core-platform-api-stubs-system-modules",
		classpath:     []string{"ext", "framework"},
		bootclasspath: config.DefaultBootclasspathLibraries,
		system:        config.DefaultSystemModules,
		classpath:     config.DefaultLibraries,
	},
	{
		name:          "blank sdk version",
		properties:    `sdk_version: "",`,
		bootclasspath: []string{"core.platform.api.stubs", "core-lambda-stubs"},
		system:        "core-platform-api-stubs-system-modules",
		classpath:     []string{"ext", "framework"},
		bootclasspath: config.DefaultBootclasspathLibraries,
		system:        config.DefaultSystemModules,
		classpath:     config.DefaultLibraries,
	},
	{