c016143602
In Soong, java_library can specify static_deps which are dependencies that get aggregated into the final jar (akin to static linking). This is useful because it allows dependencies higher up in the chain to compile against the APIs exported by transitive dependencies. Bazel does not support this functionality directly, but it can be emulated via the exports attribute which makes any targets listed in the attribute public to targets further up the chain. Bug: 217236083 Bug: 219908977 Test: b build //external/error_prone:error_prone_core Test: b build //external/bouncycastle:bouncycastle-host Test: b build --platforms=//build/bazel/platforms:linux_x86 //prebuilts/sdk/tools/jetifier/jetifier-standalone:jetifier Change-Id: I2867e3f816de720a6f4bd9ff7a847d1b0c2da2d6
130 lines
3.7 KiB
Go
130 lines
3.7 KiB
Go
// Copyright 2021 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package bp2build
|
|
|
|
import (
|
|
"android/soong/android"
|
|
"android/soong/java"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func runAndroidAppTestCase(t *testing.T, tc bp2buildTestCase) {
|
|
t.Helper()
|
|
runBp2BuildTestCase(t, registerAndroidAppModuleTypes, tc)
|
|
}
|
|
|
|
func registerAndroidAppModuleTypes(ctx android.RegistrationContext) {
|
|
}
|
|
|
|
func TestMinimalAndroidApp(t *testing.T) {
|
|
runAndroidAppTestCase(t, bp2buildTestCase{
|
|
description: "Android app - simple example",
|
|
moduleTypeUnderTest: "android_app",
|
|
moduleTypeUnderTestFactory: java.AndroidAppFactory,
|
|
filesystem: map[string]string{
|
|
"app.java": "",
|
|
"res/res.png": "",
|
|
"AndroidManifest.xml": "",
|
|
},
|
|
blueprint: `
|
|
android_app {
|
|
name: "TestApp",
|
|
srcs: ["app.java"],
|
|
sdk_version: "current",
|
|
}
|
|
`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("android_binary", "TestApp", attrNameToString{
|
|
"srcs": `["app.java"]`,
|
|
"manifest": `"AndroidManifest.xml"`,
|
|
"resource_files": `["res/res.png"]`,
|
|
}),
|
|
}})
|
|
}
|
|
|
|
func TestAndroidAppAllSupportedFields(t *testing.T) {
|
|
runAndroidAppTestCase(t, bp2buildTestCase{
|
|
description: "Android app - all supported fields",
|
|
moduleTypeUnderTest: "android_app",
|
|
moduleTypeUnderTestFactory: java.AndroidAppFactory,
|
|
filesystem: map[string]string{
|
|
"app.java": "",
|
|
"resa/res.png": "",
|
|
"resb/res.png": "",
|
|
"manifest/AndroidManifest.xml": "",
|
|
},
|
|
blueprint: simpleModuleDoNotConvertBp2build("android_app", "static_lib_dep") + `
|
|
android_app {
|
|
name: "TestApp",
|
|
srcs: ["app.java"],
|
|
sdk_version: "current",
|
|
package_name: "com.google",
|
|
resource_dirs: ["resa", "resb"],
|
|
manifest: "manifest/AndroidManifest.xml",
|
|
static_libs: ["static_lib_dep"]
|
|
}
|
|
`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("android_binary", "TestApp", attrNameToString{
|
|
"srcs": `["app.java"]`,
|
|
"manifest": `"manifest/AndroidManifest.xml"`,
|
|
"resource_files": `[
|
|
"resa/res.png",
|
|
"resb/res.png",
|
|
]`,
|
|
"custom_package": `"com.google"`,
|
|
"deps": `[":static_lib_dep"]`,
|
|
}),
|
|
}})
|
|
}
|
|
|
|
func TestAndroidAppArchVariantSrcs(t *testing.T) {
|
|
runAndroidAppTestCase(t, bp2buildTestCase{
|
|
description: "Android app - arch variant srcs",
|
|
moduleTypeUnderTest: "android_app",
|
|
moduleTypeUnderTestFactory: java.AndroidAppFactory,
|
|
filesystem: map[string]string{
|
|
"arm.java": "",
|
|
"x86.java": "",
|
|
"res/res.png": "",
|
|
"AndroidManifest.xml": "",
|
|
},
|
|
blueprint: `
|
|
android_app {
|
|
name: "TestApp",
|
|
sdk_version: "current",
|
|
arch: {
|
|
arm: {
|
|
srcs: ["arm.java"],
|
|
},
|
|
x86: {
|
|
srcs: ["x86.java"],
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
expectedBazelTargets: []string{
|
|
makeBazelTarget("android_binary", "TestApp", attrNameToString{
|
|
"srcs": `select({
|
|
"//build/bazel/platforms/arch:arm": ["arm.java"],
|
|
"//build/bazel/platforms/arch:x86": ["x86.java"],
|
|
"//conditions:default": [],
|
|
})`,
|
|
"manifest": `"AndroidManifest.xml"`,
|
|
"resource_files": `["res/res.png"]`,
|
|
}),
|
|
}})
|
|
}
|