e96108d797
This change adds a test that includes license modules that are used by modules which are part of an sdk but which does not yet copy the license module into the snapshot. It includes the refactoring changes needed to allow license modules to be used in an sdk test and provides a baseline against which future changes can be compared. Bug: 181569894 Test: m nothing Change-Id: I60722f43cc9cc8375d97f46eb4c281e6c38987cd
34 lines
712 B
Text
34 lines
712 B
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-sdk",
|
|
pkgPath: "android/soong/sdk",
|
|
deps: [
|
|
"blueprint",
|
|
"soong",
|
|
"soong-android",
|
|
"soong-apex",
|
|
"soong-cc",
|
|
"soong-java",
|
|
],
|
|
srcs: [
|
|
"bp.go",
|
|
"exports.go",
|
|
"sdk.go",
|
|
"update.go",
|
|
],
|
|
testSrcs: [
|
|
"bootclasspath_fragment_sdk_test.go",
|
|
"bp_test.go",
|
|
"cc_sdk_test.go",
|
|
"compat_config_sdk_test.go",
|
|
"exports_test.go",
|
|
"java_sdk_test.go",
|
|
"license_sdk_test.go",
|
|
"sdk_test.go",
|
|
"testing.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|