2021-03-24 15:04:33 +01:00
|
|
|
// 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 (
|
2021-09-17 13:38:09 +02:00
|
|
|
"fmt"
|
2021-08-23 18:10:00 +02:00
|
|
|
"testing"
|
|
|
|
|
2021-03-24 15:04:33 +01:00
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/cc"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// See cc/testing.go for more context
|
|
|
|
soongCcLibraryPreamble = `
|
|
|
|
cc_defaults {
|
2021-09-10 16:06:32 +02:00
|
|
|
name: "linux_bionic_supported",
|
2022-09-16 15:01:29 +02:00
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
soongCcVersionLibBpPath = "build/soong/cc/libbuildversion/Android.bp"
|
|
|
|
soongCcVersionLibBp = `
|
|
|
|
cc_library_static {
|
|
|
|
name: "libbuildversion",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
`
|
2021-09-28 15:19:17 +02:00
|
|
|
|
|
|
|
soongCcProtoLibraries = `
|
|
|
|
cc_library {
|
|
|
|
name: "libprotobuf-cpp-lite",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "libprotobuf-cpp-full",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}`
|
|
|
|
|
|
|
|
soongCcProtoPreamble = soongCcLibraryPreamble + soongCcProtoLibraries
|
2021-03-24 15:04:33 +01:00
|
|
|
)
|
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
func runCcLibraryTestCase(t *testing.T, tc Bp2buildTestCase) {
|
2021-05-25 16:39:35 +02:00
|
|
|
t.Helper()
|
2022-06-21 21:28:33 +02:00
|
|
|
RunBp2BuildTestCase(t, registerCcLibraryModuleTypes, tc)
|
2021-05-21 09:37:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func registerCcLibraryModuleTypes(ctx android.RegistrationContext) {
|
|
|
|
cc.RegisterCCBuildComponents(ctx)
|
2021-06-02 13:10:02 +02:00
|
|
|
ctx.RegisterModuleType("filegroup", android.FileGroupFactory)
|
2021-05-21 09:37:00 +02:00
|
|
|
ctx.RegisterModuleType("cc_library_static", cc.LibraryStaticFactory)
|
2021-06-11 00:20:06 +02:00
|
|
|
ctx.RegisterModuleType("cc_prebuilt_library_static", cc.PrebuiltStaticLibraryFactory)
|
2021-05-21 09:37:00 +02:00
|
|
|
ctx.RegisterModuleType("cc_library_headers", cc.LibraryHeaderFactory)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrarySimple(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library - simple example",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2022-09-16 15:01:29 +02:00
|
|
|
soongCcVersionLibBpPath: soongCcVersionLibBp,
|
|
|
|
"android.cpp": "",
|
|
|
|
"bionic.cpp": "",
|
|
|
|
"darwin.cpp": "",
|
2021-05-21 09:37:00 +02:00
|
|
|
// Refer to cc.headerExts for the supported header extensions in Soong.
|
|
|
|
"header.h": "",
|
|
|
|
"header.hh": "",
|
|
|
|
"header.hpp": "",
|
|
|
|
"header.hxx": "",
|
|
|
|
"header.h++": "",
|
|
|
|
"header.inl": "",
|
|
|
|
"header.inc": "",
|
|
|
|
"header.ipp": "",
|
|
|
|
"header.h.generic": "",
|
|
|
|
"impl.cpp": "",
|
|
|
|
"linux.cpp": "",
|
|
|
|
"x86.cpp": "",
|
|
|
|
"x86_64.cpp": "",
|
|
|
|
"foo-dir/a.h": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble +
|
2021-11-08 18:56:31 +01:00
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_headers", "some-headers") + `
|
2021-03-24 15:04:33 +01:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
|
|
|
cflags: ["-Wall"],
|
|
|
|
header_libs: ["some-headers"],
|
|
|
|
export_include_dirs: ["foo-dir"],
|
|
|
|
ldflags: ["-Wl,--exclude-libs=bar.a"],
|
|
|
|
arch: {
|
|
|
|
x86: {
|
|
|
|
ldflags: ["-Wl,--exclude-libs=baz.a"],
|
|
|
|
srcs: ["x86.cpp"],
|
|
|
|
},
|
|
|
|
x86_64: {
|
|
|
|
ldflags: ["-Wl,--exclude-libs=qux.a"],
|
|
|
|
srcs: ["x86_64.cpp"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
srcs: ["android.cpp"],
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
srcs: ["linux.cpp"],
|
|
|
|
},
|
|
|
|
darwin: {
|
|
|
|
srcs: ["darwin.cpp"],
|
|
|
|
},
|
2021-07-16 22:33:47 +02:00
|
|
|
bionic: {
|
|
|
|
srcs: ["bionic.cpp"]
|
|
|
|
},
|
2021-03-24 15:04:33 +01:00
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2022-03-02 00:44:08 +01:00
|
|
|
sdk_version: "current",
|
|
|
|
min_sdk_version: "29",
|
2022-03-23 00:35:22 +01:00
|
|
|
use_version_lib: true,
|
2021-03-24 15:04:33 +01:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `["-Wall"]`,
|
|
|
|
"export_includes": `["foo-dir"]`,
|
|
|
|
"implementation_deps": `[":some-headers"]`,
|
|
|
|
"linkopts": `["-Wl,--exclude-libs=bar.a"] + select({
|
2021-04-13 09:14:55 +02:00
|
|
|
"//build/bazel/platforms/arch:x86": ["-Wl,--exclude-libs=baz.a"],
|
|
|
|
"//build/bazel/platforms/arch:x86_64": ["-Wl,--exclude-libs=qux.a"],
|
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs": `["impl.cpp"] + select({
|
2021-04-08 16:40:57 +02:00
|
|
|
"//build/bazel/platforms/arch:x86": ["x86.cpp"],
|
|
|
|
"//build/bazel/platforms/arch:x86_64": ["x86_64.cpp"],
|
2021-03-24 15:04:33 +01:00
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
2021-10-01 20:45:30 +02:00
|
|
|
"//build/bazel/platforms/os:android": [
|
|
|
|
"bionic.cpp",
|
2021-10-11 21:41:03 +02:00
|
|
|
"android.cpp",
|
2021-10-01 20:45:30 +02:00
|
|
|
],
|
2021-04-08 16:40:57 +02:00
|
|
|
"//build/bazel/platforms/os:darwin": ["darwin.cpp"],
|
2021-10-01 20:45:30 +02:00
|
|
|
"//build/bazel/platforms/os:linux_bionic": ["bionic.cpp"],
|
2022-12-21 00:29:31 +01:00
|
|
|
"//build/bazel/platforms/os:linux_glibc": ["linux.cpp"],
|
2021-07-16 22:33:47 +02:00
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2022-09-16 15:01:29 +02:00
|
|
|
"sdk_version": `"current"`,
|
|
|
|
"min_sdk_version": `"29"`,
|
|
|
|
"use_version_lib": `True`,
|
|
|
|
"implementation_whole_archive_deps": `["//build/soong/cc/libbuildversion:libbuildversion"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
2021-11-08 18:56:31 +01:00
|
|
|
})
|
2021-05-21 09:37:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryTrimmedLdAndroid(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library - trimmed example of //bionic/linker:ld-android",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-05-21 09:37:00 +02:00
|
|
|
"ld-android.cpp": "",
|
|
|
|
"linked_list.h": "",
|
|
|
|
"linker.h": "",
|
|
|
|
"linker_block_allocator.h": "",
|
|
|
|
"linker_cfi.h": "",
|
2021-03-24 15:04:33 +01:00
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble +
|
2021-11-01 20:32:43 +01:00
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_headers", "libc_headers") + `
|
2021-03-24 15:04:33 +01:00
|
|
|
cc_library {
|
|
|
|
name: "fake-ld-android",
|
|
|
|
srcs: ["ld_android.cpp"],
|
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Wunused",
|
|
|
|
"-Werror",
|
|
|
|
],
|
|
|
|
header_libs: ["libc_headers"],
|
|
|
|
ldflags: [
|
|
|
|
"-Wl,--exclude-libs=libgcc.a",
|
|
|
|
"-Wl,--exclude-libs=libgcc_stripped.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
|
|
|
|
],
|
|
|
|
arch: {
|
|
|
|
x86: {
|
|
|
|
ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
|
|
|
|
},
|
|
|
|
x86_64: {
|
|
|
|
ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
|
|
|
|
},
|
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-03-24 15:04:33 +01:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("fake-ld-android", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs": `["ld_android.cpp"]`,
|
|
|
|
"copts": `[
|
2021-03-24 15:04:33 +01:00
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Wunused",
|
|
|
|
"-Werror",
|
2021-11-08 18:56:31 +01:00
|
|
|
]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"implementation_deps": `[":libc_headers"]`,
|
|
|
|
"linkopts": `[
|
2021-03-24 15:04:33 +01:00
|
|
|
"-Wl,--exclude-libs=libgcc.a",
|
|
|
|
"-Wl,--exclude-libs=libgcc_stripped.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
|
|
|
|
] + select({
|
2021-04-08 16:40:57 +02:00
|
|
|
"//build/bazel/platforms/arch:x86": ["-Wl,--exclude-libs=libgcc_eh.a"],
|
|
|
|
"//build/bazel/platforms/arch:x86_64": ["-Wl,--exclude-libs=libgcc_eh.a"],
|
2021-03-24 15:04:33 +01:00
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
2021-05-21 09:37:00 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryExcludeSrcs(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library exclude_srcs - trimmed example of //external/arm-optimized-routines:libarm-optimized-routines-math",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Dir: "external",
|
|
|
|
Filesystem: map[string]string{
|
2021-05-21 09:37:00 +02:00
|
|
|
"external/math/cosf.c": "",
|
|
|
|
"external/math/erf.c": "",
|
|
|
|
"external/math/erf_data.c": "",
|
|
|
|
"external/math/erff.c": "",
|
|
|
|
"external/math/erff_data.c": "",
|
|
|
|
"external/Android.bp": `
|
2021-04-27 11:47:02 +02:00
|
|
|
cc_library {
|
|
|
|
name: "fake-libarm-optimized-routines-math",
|
|
|
|
exclude_srcs: [
|
|
|
|
// Provided by:
|
|
|
|
// bionic/libm/upstream-freebsd/lib/msun/src/s_erf.c
|
|
|
|
// bionic/libm/upstream-freebsd/lib/msun/src/s_erff.c
|
|
|
|
"math/erf.c",
|
|
|
|
"math/erf_data.c",
|
|
|
|
"math/erff.c",
|
|
|
|
"math/erff_data.c",
|
|
|
|
],
|
|
|
|
srcs: [
|
|
|
|
"math/*.c",
|
|
|
|
],
|
|
|
|
// arch-specific settings
|
|
|
|
arch: {
|
|
|
|
arm64: {
|
|
|
|
cflags: [
|
|
|
|
"-DHAVE_FAST_FMA=1",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
}
|
|
|
|
`,
|
2021-05-21 09:37:00 +02:00
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("fake-libarm-optimized-routines-math", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `select({
|
2021-04-27 11:47:02 +02:00
|
|
|
"//build/bazel/platforms/arch:arm64": ["-DHAVE_FAST_FMA=1"],
|
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"local_includes": `["."]`,
|
|
|
|
"srcs_c": `["math/cosf.c"]`,
|
|
|
|
}),
|
2021-05-21 09:37:00 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrarySharedStaticProps(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library shared/static props",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-09-10 16:06:32 +02:00
|
|
|
"both.cpp": "",
|
|
|
|
"sharedonly.cpp": "",
|
|
|
|
"staticonly.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-04-29 10:15:13 +02:00
|
|
|
cc_library {
|
|
|
|
name: "a",
|
2021-05-06 22:23:19 +02:00
|
|
|
srcs: ["both.cpp"],
|
|
|
|
cflags: ["bothflag"],
|
|
|
|
shared_libs: ["shared_dep_for_both"],
|
2022-03-21 14:03:29 +01:00
|
|
|
static_libs: ["static_dep_for_both", "whole_and_static_lib_for_both"],
|
|
|
|
whole_static_libs: ["whole_static_lib_for_both", "whole_and_static_lib_for_both"],
|
2021-05-06 22:23:19 +02:00
|
|
|
static: {
|
|
|
|
srcs: ["staticonly.cpp"],
|
|
|
|
cflags: ["staticflag"],
|
|
|
|
shared_libs: ["shared_dep_for_static"],
|
|
|
|
static_libs: ["static_dep_for_static"],
|
|
|
|
whole_static_libs: ["whole_static_lib_for_static"],
|
|
|
|
},
|
|
|
|
shared: {
|
|
|
|
srcs: ["sharedonly.cpp"],
|
|
|
|
cflags: ["sharedflag"],
|
|
|
|
shared_libs: ["shared_dep_for_shared"],
|
|
|
|
static_libs: ["static_dep_for_shared"],
|
|
|
|
whole_static_libs: ["whole_static_lib_for_shared"],
|
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-04-29 10:15:13 +02:00
|
|
|
}
|
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library_static {
|
|
|
|
name: "static_dep_for_shared",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-05-06 22:23:19 +02:00
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library_static {
|
|
|
|
name: "static_dep_for_static",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-05-06 22:23:19 +02:00
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library_static {
|
|
|
|
name: "static_dep_for_both",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-05-06 22:23:19 +02:00
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library_static {
|
|
|
|
name: "whole_static_lib_for_shared",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-05-06 22:23:19 +02:00
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library_static {
|
|
|
|
name: "whole_static_lib_for_static",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-05-06 22:23:19 +02:00
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library_static {
|
|
|
|
name: "whole_static_lib_for_both",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-05-06 22:23:19 +02:00
|
|
|
|
2022-03-21 14:03:29 +01:00
|
|
|
cc_library_static {
|
|
|
|
name: "whole_and_static_lib_for_both",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library {
|
|
|
|
name: "shared_dep_for_shared",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-05-06 22:23:19 +02:00
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library {
|
|
|
|
name: "shared_dep_for_static",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-05-06 22:23:19 +02:00
|
|
|
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library {
|
|
|
|
name: "shared_dep_for_both",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
2021-04-29 10:15:13 +02:00
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `[
|
|
|
|
"bothflag",
|
|
|
|
"staticflag",
|
|
|
|
]`,
|
|
|
|
"implementation_deps": `[
|
|
|
|
":static_dep_for_both",
|
|
|
|
":static_dep_for_static",
|
|
|
|
]`,
|
|
|
|
"implementation_dynamic_deps": `[
|
|
|
|
":shared_dep_for_both",
|
|
|
|
":shared_dep_for_static",
|
|
|
|
]`,
|
|
|
|
"srcs": `[
|
|
|
|
"both.cpp",
|
|
|
|
"staticonly.cpp",
|
|
|
|
]`,
|
|
|
|
"whole_archive_deps": `[
|
|
|
|
":whole_static_lib_for_both",
|
2022-03-21 14:03:29 +01:00
|
|
|
":whole_and_static_lib_for_both",
|
2021-12-03 23:27:16 +01:00
|
|
|
":whole_static_lib_for_static",
|
|
|
|
]`}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `[
|
|
|
|
"bothflag",
|
|
|
|
"sharedflag",
|
|
|
|
]`,
|
|
|
|
"implementation_deps": `[
|
|
|
|
":static_dep_for_both",
|
|
|
|
":static_dep_for_shared",
|
|
|
|
]`,
|
|
|
|
"implementation_dynamic_deps": `[
|
|
|
|
":shared_dep_for_both",
|
|
|
|
":shared_dep_for_shared",
|
|
|
|
]`,
|
|
|
|
"srcs": `[
|
|
|
|
"both.cpp",
|
|
|
|
"sharedonly.cpp",
|
|
|
|
]`,
|
|
|
|
"whole_archive_deps": `[
|
|
|
|
":whole_static_lib_for_both",
|
2022-03-21 14:03:29 +01:00
|
|
|
":whole_and_static_lib_for_both",
|
2021-12-03 23:27:16 +01:00
|
|
|
":whole_static_lib_for_shared",
|
|
|
|
]`,
|
2021-11-08 18:56:31 +01:00
|
|
|
}),
|
|
|
|
},
|
2021-05-21 09:37:00 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-09-22 21:52:58 +02:00
|
|
|
func TestCcLibraryDeps(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library shared/static props",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-09-22 21:52:58 +02:00
|
|
|
"both.cpp": "",
|
|
|
|
"sharedonly.cpp": "",
|
|
|
|
"staticonly.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-09-22 21:52:58 +02:00
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: ["both.cpp"],
|
|
|
|
cflags: ["bothflag"],
|
|
|
|
shared_libs: ["implementation_shared_dep_for_both", "shared_dep_for_both"],
|
|
|
|
export_shared_lib_headers: ["shared_dep_for_both"],
|
|
|
|
static_libs: ["implementation_static_dep_for_both", "static_dep_for_both"],
|
|
|
|
export_static_lib_headers: ["static_dep_for_both", "whole_static_dep_for_both"],
|
|
|
|
whole_static_libs: ["not_explicitly_exported_whole_static_dep_for_both", "whole_static_dep_for_both"],
|
|
|
|
static: {
|
|
|
|
srcs: ["staticonly.cpp"],
|
|
|
|
cflags: ["staticflag"],
|
|
|
|
shared_libs: ["implementation_shared_dep_for_static", "shared_dep_for_static"],
|
|
|
|
export_shared_lib_headers: ["shared_dep_for_static"],
|
|
|
|
static_libs: ["implementation_static_dep_for_static", "static_dep_for_static"],
|
|
|
|
export_static_lib_headers: ["static_dep_for_static", "whole_static_dep_for_static"],
|
|
|
|
whole_static_libs: ["not_explicitly_exported_whole_static_dep_for_static", "whole_static_dep_for_static"],
|
|
|
|
},
|
|
|
|
shared: {
|
|
|
|
srcs: ["sharedonly.cpp"],
|
|
|
|
cflags: ["sharedflag"],
|
|
|
|
shared_libs: ["implementation_shared_dep_for_shared", "shared_dep_for_shared"],
|
|
|
|
export_shared_lib_headers: ["shared_dep_for_shared"],
|
|
|
|
static_libs: ["implementation_static_dep_for_shared", "static_dep_for_shared"],
|
|
|
|
export_static_lib_headers: ["static_dep_for_shared", "whole_static_dep_for_shared"],
|
|
|
|
whole_static_libs: ["not_explicitly_exported_whole_static_dep_for_shared", "whole_static_dep_for_shared"],
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
` + simpleModuleDoNotConvertBp2build("cc_library_static", "static_dep_for_shared") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "implementation_static_dep_for_shared") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "static_dep_for_static") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "implementation_static_dep_for_static") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "static_dep_for_both") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "implementation_static_dep_for_both") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "whole_static_dep_for_shared") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "not_explicitly_exported_whole_static_dep_for_shared") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "whole_static_dep_for_static") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "not_explicitly_exported_whole_static_dep_for_static") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "whole_static_dep_for_both") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "not_explicitly_exported_whole_static_dep_for_both") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library", "shared_dep_for_shared") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library", "implementation_shared_dep_for_shared") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library", "shared_dep_for_static") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library", "implementation_shared_dep_for_static") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library", "shared_dep_for_both") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library", "implementation_shared_dep_for_both"),
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `[
|
|
|
|
"bothflag",
|
|
|
|
"staticflag",
|
|
|
|
]`,
|
|
|
|
"deps": `[
|
|
|
|
":static_dep_for_both",
|
|
|
|
":static_dep_for_static",
|
|
|
|
]`,
|
|
|
|
"dynamic_deps": `[
|
|
|
|
":shared_dep_for_both",
|
|
|
|
":shared_dep_for_static",
|
|
|
|
]`,
|
|
|
|
"implementation_deps": `[
|
|
|
|
":implementation_static_dep_for_both",
|
|
|
|
":implementation_static_dep_for_static",
|
|
|
|
]`,
|
|
|
|
"implementation_dynamic_deps": `[
|
|
|
|
":implementation_shared_dep_for_both",
|
|
|
|
":implementation_shared_dep_for_static",
|
|
|
|
]`,
|
|
|
|
"srcs": `[
|
|
|
|
"both.cpp",
|
|
|
|
"staticonly.cpp",
|
|
|
|
]`,
|
2021-11-08 18:56:31 +01:00
|
|
|
"whole_archive_deps": `[
|
2021-09-22 21:52:58 +02:00
|
|
|
":not_explicitly_exported_whole_static_dep_for_both",
|
|
|
|
":whole_static_dep_for_both",
|
2021-12-03 23:27:16 +01:00
|
|
|
":not_explicitly_exported_whole_static_dep_for_static",
|
|
|
|
":whole_static_dep_for_static",
|
2021-11-08 18:56:31 +01:00
|
|
|
]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `[
|
|
|
|
"bothflag",
|
|
|
|
"sharedflag",
|
|
|
|
]`,
|
|
|
|
"deps": `[
|
|
|
|
":static_dep_for_both",
|
|
|
|
":static_dep_for_shared",
|
|
|
|
]`,
|
|
|
|
"dynamic_deps": `[
|
|
|
|
":shared_dep_for_both",
|
|
|
|
":shared_dep_for_shared",
|
|
|
|
]`,
|
|
|
|
"implementation_deps": `[
|
|
|
|
":implementation_static_dep_for_both",
|
|
|
|
":implementation_static_dep_for_shared",
|
|
|
|
]`,
|
|
|
|
"implementation_dynamic_deps": `[
|
|
|
|
":implementation_shared_dep_for_both",
|
|
|
|
":implementation_shared_dep_for_shared",
|
|
|
|
]`,
|
|
|
|
"srcs": `[
|
|
|
|
"both.cpp",
|
|
|
|
"sharedonly.cpp",
|
|
|
|
]`,
|
|
|
|
"whole_archive_deps": `[
|
|
|
|
":not_explicitly_exported_whole_static_dep_for_both",
|
|
|
|
":whole_static_dep_for_both",
|
|
|
|
":not_explicitly_exported_whole_static_dep_for_shared",
|
|
|
|
":whole_static_dep_for_shared",
|
|
|
|
]`,
|
|
|
|
})},
|
|
|
|
},
|
|
|
|
)
|
2021-09-22 21:52:58 +02:00
|
|
|
}
|
|
|
|
|
2021-06-11 00:20:06 +02:00
|
|
|
func TestCcLibraryWholeStaticLibsAlwaysLink(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Dir: "foo/bar",
|
|
|
|
Filesystem: map[string]string{
|
2021-06-11 00:20:06 +02:00
|
|
|
"foo/bar/Android.bp": `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
whole_static_libs: ["whole_static_lib_for_both"],
|
|
|
|
static: {
|
|
|
|
whole_static_libs: ["whole_static_lib_for_static"],
|
|
|
|
},
|
|
|
|
shared: {
|
|
|
|
whole_static_libs: ["whole_static_lib_for_shared"],
|
|
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-06-11 00:20:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_prebuilt_library_static { name: "whole_static_lib_for_shared" }
|
|
|
|
|
|
|
|
cc_prebuilt_library_static { name: "whole_static_lib_for_static" }
|
|
|
|
|
|
|
|
cc_prebuilt_library_static { name: "whole_static_lib_for_both" }
|
|
|
|
`,
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble,
|
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"whole_archive_deps": `[
|
|
|
|
":whole_static_lib_for_both_alwayslink",
|
|
|
|
":whole_static_lib_for_static_alwayslink",
|
|
|
|
]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"whole_archive_deps": `[
|
|
|
|
":whole_static_lib_for_both_alwayslink",
|
|
|
|
":whole_static_lib_for_shared_alwayslink",
|
|
|
|
]`,
|
2021-11-08 18:56:31 +01:00
|
|
|
}),
|
|
|
|
},
|
2021-12-03 23:27:16 +01:00
|
|
|
},
|
|
|
|
)
|
2021-06-11 00:20:06 +02:00
|
|
|
}
|
|
|
|
|
2021-05-26 06:42:42 +02:00
|
|
|
func TestCcLibrarySharedStaticPropsInArch(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library shared/static props in arch",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Dir: "foo/bar",
|
|
|
|
Filesystem: map[string]string{
|
2021-05-26 06:42:42 +02:00
|
|
|
"foo/bar/arm.cpp": "",
|
|
|
|
"foo/bar/x86.cpp": "",
|
|
|
|
"foo/bar/sharedonly.cpp": "",
|
|
|
|
"foo/bar/staticonly.cpp": "",
|
|
|
|
"foo/bar/Android.bp": `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
shared: {
|
|
|
|
srcs: ["arm_shared.cpp"],
|
|
|
|
cflags: ["-DARM_SHARED"],
|
|
|
|
static_libs: ["arm_static_dep_for_shared"],
|
|
|
|
whole_static_libs: ["arm_whole_static_dep_for_shared"],
|
|
|
|
shared_libs: ["arm_shared_dep_for_shared"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
x86: {
|
|
|
|
static: {
|
|
|
|
srcs: ["x86_static.cpp"],
|
|
|
|
cflags: ["-DX86_STATIC"],
|
|
|
|
static_libs: ["x86_dep_for_static"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
shared: {
|
|
|
|
srcs: ["android_shared.cpp"],
|
|
|
|
cflags: ["-DANDROID_SHARED"],
|
|
|
|
static_libs: ["android_dep_for_shared"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
android_arm: {
|
|
|
|
shared: {
|
|
|
|
cflags: ["-DANDROID_ARM_SHARED"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
srcs: ["both.cpp"],
|
|
|
|
cflags: ["bothflag"],
|
|
|
|
static_libs: ["static_dep_for_both"],
|
|
|
|
static: {
|
|
|
|
srcs: ["staticonly.cpp"],
|
|
|
|
cflags: ["staticflag"],
|
|
|
|
static_libs: ["static_dep_for_static"],
|
|
|
|
},
|
|
|
|
shared: {
|
|
|
|
srcs: ["sharedonly.cpp"],
|
|
|
|
cflags: ["sharedflag"],
|
|
|
|
static_libs: ["static_dep_for_shared"],
|
|
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library_static { name: "static_dep_for_shared" }
|
|
|
|
cc_library_static { name: "static_dep_for_static" }
|
|
|
|
cc_library_static { name: "static_dep_for_both" }
|
|
|
|
|
|
|
|
cc_library_static { name: "arm_static_dep_for_shared" }
|
|
|
|
cc_library_static { name: "arm_whole_static_dep_for_shared" }
|
|
|
|
cc_library_static { name: "arm_shared_dep_for_shared" }
|
|
|
|
|
|
|
|
cc_library_static { name: "x86_dep_for_static" }
|
|
|
|
|
|
|
|
cc_library_static { name: "android_dep_for_shared" }
|
|
|
|
`,
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble,
|
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `[
|
|
|
|
"bothflag",
|
|
|
|
"staticflag",
|
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/arch:x86": ["-DX86_STATIC"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"implementation_deps": `[
|
|
|
|
":static_dep_for_both",
|
|
|
|
":static_dep_for_static",
|
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/arch:x86": [":x86_dep_for_static"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"srcs": `[
|
|
|
|
"both.cpp",
|
|
|
|
"staticonly.cpp",
|
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/arch:x86": ["x86_static.cpp"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `[
|
|
|
|
"bothflag",
|
|
|
|
"sharedflag",
|
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/arch:arm": ["-DARM_SHARED"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os:android": ["-DANDROID_SHARED"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os_arch:android_arm": ["-DANDROID_ARM_SHARED"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"implementation_deps": `[
|
|
|
|
":static_dep_for_both",
|
|
|
|
":static_dep_for_shared",
|
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/arch:arm": [":arm_static_dep_for_shared"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os:android": [":android_dep_for_shared"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"implementation_dynamic_deps": `select({
|
|
|
|
"//build/bazel/platforms/arch:arm": [":arm_shared_dep_for_shared"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"srcs": `[
|
|
|
|
"both.cpp",
|
|
|
|
"sharedonly.cpp",
|
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/arch:arm": ["arm_shared.cpp"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os:android": ["android_shared.cpp"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"whole_archive_deps": `select({
|
|
|
|
"//build/bazel/platforms/arch:arm": [":arm_whole_static_dep_for_shared"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
2021-11-08 18:56:31 +01:00
|
|
|
}),
|
|
|
|
},
|
2021-12-03 23:27:16 +01:00
|
|
|
},
|
|
|
|
)
|
2021-05-26 06:42:42 +02:00
|
|
|
}
|
|
|
|
|
2021-06-02 13:10:02 +02:00
|
|
|
func TestCcLibrarySharedStaticPropsWithMixedSources(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library shared/static props with c/cpp/s mixed sources",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Dir: "foo/bar",
|
|
|
|
Filesystem: map[string]string{
|
2021-06-02 13:10:02 +02:00
|
|
|
"foo/bar/both_source.cpp": "",
|
|
|
|
"foo/bar/both_source.cc": "",
|
|
|
|
"foo/bar/both_source.c": "",
|
|
|
|
"foo/bar/both_source.s": "",
|
|
|
|
"foo/bar/both_source.S": "",
|
|
|
|
"foo/bar/shared_source.cpp": "",
|
|
|
|
"foo/bar/shared_source.cc": "",
|
|
|
|
"foo/bar/shared_source.c": "",
|
|
|
|
"foo/bar/shared_source.s": "",
|
|
|
|
"foo/bar/shared_source.S": "",
|
|
|
|
"foo/bar/static_source.cpp": "",
|
|
|
|
"foo/bar/static_source.cc": "",
|
|
|
|
"foo/bar/static_source.c": "",
|
|
|
|
"foo/bar/static_source.s": "",
|
|
|
|
"foo/bar/static_source.S": "",
|
|
|
|
"foo/bar/Android.bp": `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: [
|
2021-06-03 19:43:01 +02:00
|
|
|
"both_source.cpp",
|
|
|
|
"both_source.cc",
|
|
|
|
"both_source.c",
|
|
|
|
"both_source.s",
|
|
|
|
"both_source.S",
|
2021-09-20 18:55:02 +02:00
|
|
|
":both_filegroup",
|
2021-06-03 19:43:01 +02:00
|
|
|
],
|
2021-06-02 13:10:02 +02:00
|
|
|
static: {
|
2021-09-10 16:06:32 +02:00
|
|
|
srcs: [
|
|
|
|
"static_source.cpp",
|
|
|
|
"static_source.cc",
|
|
|
|
"static_source.c",
|
|
|
|
"static_source.s",
|
|
|
|
"static_source.S",
|
|
|
|
":static_filegroup",
|
|
|
|
],
|
2021-06-02 13:10:02 +02:00
|
|
|
},
|
|
|
|
shared: {
|
2021-09-10 16:06:32 +02:00
|
|
|
srcs: [
|
|
|
|
"shared_source.cpp",
|
|
|
|
"shared_source.cc",
|
|
|
|
"shared_source.c",
|
|
|
|
"shared_source.s",
|
|
|
|
"shared_source.S",
|
|
|
|
":shared_filegroup",
|
|
|
|
],
|
2021-06-02 13:10:02 +02:00
|
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "both_filegroup",
|
|
|
|
srcs: [
|
|
|
|
// Not relevant, handled by filegroup macro
|
2021-06-03 19:43:01 +02:00
|
|
|
],
|
2021-06-02 13:10:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "shared_filegroup",
|
|
|
|
srcs: [
|
|
|
|
// Not relevant, handled by filegroup macro
|
2021-06-03 19:43:01 +02:00
|
|
|
],
|
2021-06-02 13:10:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "static_filegroup",
|
|
|
|
srcs: [
|
|
|
|
// Not relevant, handled by filegroup macro
|
2021-06-03 19:43:01 +02:00
|
|
|
],
|
2021-06-02 13:10:02 +02:00
|
|
|
}
|
|
|
|
`,
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble,
|
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
2021-11-08 18:56:31 +01:00
|
|
|
"local_includes": `["."]`,
|
|
|
|
"srcs": `[
|
2021-06-02 13:10:02 +02:00
|
|
|
"both_source.cpp",
|
2021-09-20 18:55:02 +02:00
|
|
|
"both_source.cc",
|
|
|
|
":both_filegroup_cpp_srcs",
|
2021-12-03 23:27:16 +01:00
|
|
|
"static_source.cpp",
|
|
|
|
"static_source.cc",
|
|
|
|
":static_filegroup_cpp_srcs",
|
2021-11-08 18:56:31 +01:00
|
|
|
]`,
|
|
|
|
"srcs_as": `[
|
2021-06-02 13:10:02 +02:00
|
|
|
"both_source.s",
|
|
|
|
"both_source.S",
|
|
|
|
":both_filegroup_as_srcs",
|
2021-12-03 23:27:16 +01:00
|
|
|
"static_source.s",
|
|
|
|
"static_source.S",
|
|
|
|
":static_filegroup_as_srcs",
|
2021-11-08 18:56:31 +01:00
|
|
|
]`,
|
|
|
|
"srcs_c": `[
|
2021-06-02 13:10:02 +02:00
|
|
|
"both_source.c",
|
|
|
|
":both_filegroup_c_srcs",
|
2021-12-03 23:27:16 +01:00
|
|
|
"static_source.c",
|
|
|
|
":static_filegroup_c_srcs",
|
2021-11-08 18:56:31 +01:00
|
|
|
]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"local_includes": `["."]`,
|
|
|
|
"srcs": `[
|
|
|
|
"both_source.cpp",
|
|
|
|
"both_source.cc",
|
|
|
|
":both_filegroup_cpp_srcs",
|
|
|
|
"shared_source.cpp",
|
|
|
|
"shared_source.cc",
|
|
|
|
":shared_filegroup_cpp_srcs",
|
|
|
|
]`,
|
|
|
|
"srcs_as": `[
|
|
|
|
"both_source.s",
|
|
|
|
"both_source.S",
|
|
|
|
":both_filegroup_as_srcs",
|
|
|
|
"shared_source.s",
|
|
|
|
"shared_source.S",
|
|
|
|
":shared_filegroup_as_srcs",
|
|
|
|
]`,
|
|
|
|
"srcs_c": `[
|
|
|
|
"both_source.c",
|
|
|
|
":both_filegroup_c_srcs",
|
|
|
|
"shared_source.c",
|
|
|
|
":shared_filegroup_c_srcs",
|
|
|
|
]`,
|
|
|
|
})}})
|
2021-06-02 13:10:02 +02:00
|
|
|
}
|
|
|
|
|
2022-10-03 22:27:27 +02:00
|
|
|
func TestCcLibraryNonConfiguredVersionScriptAndDynamicList(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
2022-10-03 22:27:27 +02:00
|
|
|
Description: "cc_library non-configured version script and dynamic list",
|
2022-06-21 21:28:33 +02:00
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Dir: "foo/bar",
|
|
|
|
Filesystem: map[string]string{
|
2021-05-21 09:37:00 +02:00
|
|
|
"foo/bar/Android.bp": `
|
2021-04-30 15:35:09 +02:00
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: ["a.cpp"],
|
|
|
|
version_script: "v.map",
|
2022-10-03 22:27:27 +02:00
|
|
|
dynamic_list: "dynamic.list",
|
2021-04-30 15:35:09 +02:00
|
|
|
bazel_module: { bp2build_available: true },
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-04-30 15:35:09 +02:00
|
|
|
}
|
|
|
|
`,
|
2021-05-21 09:37:00 +02:00
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
|
2022-10-03 22:27:27 +02:00
|
|
|
"additional_linker_inputs": `[
|
|
|
|
"v.map",
|
|
|
|
"dynamic.list",
|
|
|
|
]`,
|
|
|
|
"linkopts": `[
|
|
|
|
"-Wl,--version-script,$(location v.map)",
|
|
|
|
"-Wl,--dynamic-list,$(location dynamic.list)",
|
|
|
|
]`,
|
|
|
|
"srcs": `["a.cpp"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-05-21 09:37:00 +02:00
|
|
|
}
|
|
|
|
|
2022-10-03 22:27:27 +02:00
|
|
|
func TestCcLibraryConfiguredVersionScriptAndDynamicList(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
2022-10-03 22:27:27 +02:00
|
|
|
Description: "cc_library configured version script and dynamic list",
|
2022-06-21 21:28:33 +02:00
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Dir: "foo/bar",
|
|
|
|
Filesystem: map[string]string{
|
2021-05-21 09:37:00 +02:00
|
|
|
"foo/bar/Android.bp": `
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: ["a.cpp"],
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
version_script: "arm.map",
|
2022-10-03 22:27:27 +02:00
|
|
|
dynamic_list: "dynamic_arm.list",
|
2021-09-10 16:06:32 +02:00
|
|
|
},
|
|
|
|
arm64: {
|
|
|
|
version_script: "arm64.map",
|
2022-10-03 22:27:27 +02:00
|
|
|
dynamic_list: "dynamic_arm64.list",
|
2021-09-10 16:06:32 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
2021-06-03 19:43:01 +02:00
|
|
|
`,
|
2021-05-21 09:37:00 +02:00
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"additional_linker_inputs": `select({
|
2022-10-03 22:27:27 +02:00
|
|
|
"//build/bazel/platforms/arch:arm": [
|
|
|
|
"arm.map",
|
|
|
|
"dynamic_arm.list",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/arch:arm64": [
|
|
|
|
"arm64.map",
|
|
|
|
"dynamic_arm64.list",
|
|
|
|
],
|
2021-10-04 19:54:37 +02:00
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"linkopts": `select({
|
2022-10-03 22:27:27 +02:00
|
|
|
"//build/bazel/platforms/arch:arm": [
|
|
|
|
"-Wl,--version-script,$(location arm.map)",
|
|
|
|
"-Wl,--dynamic-list,$(location dynamic_arm.list)",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/arch:arm64": [
|
|
|
|
"-Wl,--version-script,$(location arm64.map)",
|
|
|
|
"-Wl,--dynamic-list,$(location dynamic_arm64.list)",
|
|
|
|
],
|
2021-10-04 19:54:37 +02:00
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs": `["a.cpp"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-05-21 09:37:00 +02:00
|
|
|
}
|
|
|
|
|
2022-09-20 20:58:01 +02:00
|
|
|
func TestCcLibraryLdflagsSplitBySpaceExceptSoongAdded(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "ldflags are split by spaces except for the ones added by soong (version script and dynamic list)",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"version_script": "",
|
|
|
|
"dynamic.list": "",
|
|
|
|
},
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
ldflags: [
|
|
|
|
"--nospace_flag",
|
|
|
|
"-z spaceflag",
|
|
|
|
],
|
|
|
|
version_script: "version_script",
|
|
|
|
dynamic_list: "dynamic.list",
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"additional_linker_inputs": `[
|
|
|
|
"version_script",
|
|
|
|
"dynamic.list",
|
|
|
|
]`,
|
|
|
|
"linkopts": `[
|
|
|
|
"--nospace_flag",
|
|
|
|
"-z",
|
|
|
|
"spaceflag",
|
|
|
|
"-Wl,--version-script,$(location version_script)",
|
|
|
|
"-Wl,--dynamic-list,$(location dynamic.list)",
|
|
|
|
]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-05-21 09:37:00 +02:00
|
|
|
func TestCcLibrarySharedLibs(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library shared_libs",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-05-06 08:40:33 +02:00
|
|
|
cc_library {
|
|
|
|
name: "mylib",
|
2021-09-10 16:06:32 +02:00
|
|
|
bazel_module: { bp2build_available: false },
|
2021-05-06 08:40:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
shared_libs: ["mylib",],
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-05-06 08:40:33 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"implementation_dynamic_deps": `[":mylib"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-05-21 09:37:00 +02:00
|
|
|
}
|
|
|
|
|
2021-10-06 16:32:26 +02:00
|
|
|
func TestCcLibraryFeatures(t *testing.T) {
|
2021-12-03 23:27:16 +01:00
|
|
|
expected_targets := []string{}
|
2022-06-21 21:28:33 +02:00
|
|
|
expected_targets = append(expected_targets, makeCcLibraryTargets("a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"features": `[
|
|
|
|
"disable_pack_relocations",
|
|
|
|
"-no_undefined_symbols",
|
|
|
|
]`,
|
2022-12-08 00:45:30 +01:00
|
|
|
"native_coverage": `False`,
|
|
|
|
"srcs": `["a.cpp"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
})...)
|
2022-06-21 21:28:33 +02:00
|
|
|
expected_targets = append(expected_targets, makeCcLibraryTargets("b", AttrNameToString{
|
2022-12-08 00:45:30 +01:00
|
|
|
"features": `select({
|
2021-12-03 23:27:16 +01:00
|
|
|
"//build/bazel/platforms/arch:x86_64": [
|
|
|
|
"disable_pack_relocations",
|
|
|
|
"-no_undefined_symbols",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
2022-12-08 00:45:30 +01:00
|
|
|
"native_coverage": `False`,
|
|
|
|
"srcs": `["b.cpp"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
})...)
|
2022-06-21 21:28:33 +02:00
|
|
|
expected_targets = append(expected_targets, makeCcLibraryTargets("c", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/os:darwin": [
|
|
|
|
"disable_pack_relocations",
|
|
|
|
"-no_undefined_symbols",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"srcs": `["c.cpp"]`,
|
|
|
|
})...)
|
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library pack_relocations test",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-05-10 05:55:51 +02:00
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: ["a.cpp"],
|
|
|
|
pack_relocations: false,
|
2021-10-06 16:32:26 +02:00
|
|
|
allow_undefined_symbols: true,
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2022-05-18 00:13:28 +02:00
|
|
|
native_coverage: false,
|
2021-05-10 05:55:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "b",
|
|
|
|
srcs: ["b.cpp"],
|
|
|
|
arch: {
|
|
|
|
x86_64: {
|
2021-09-10 16:06:32 +02:00
|
|
|
pack_relocations: false,
|
2021-10-06 16:32:26 +02:00
|
|
|
allow_undefined_symbols: true,
|
2021-09-10 16:06:32 +02:00
|
|
|
},
|
2021-05-10 05:55:51 +02:00
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2022-05-18 00:13:28 +02:00
|
|
|
native_coverage: false,
|
2021-05-10 05:55:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "c",
|
|
|
|
srcs: ["c.cpp"],
|
|
|
|
target: {
|
|
|
|
darwin: {
|
2021-09-10 16:06:32 +02:00
|
|
|
pack_relocations: false,
|
2021-10-06 16:32:26 +02:00
|
|
|
allow_undefined_symbols: true,
|
2021-09-10 16:06:32 +02:00
|
|
|
},
|
2021-05-10 05:55:51 +02:00
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-05-10 05:55:51 +02:00
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: expected_targets,
|
2021-05-21 09:37:00 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrarySpacesInCopts(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library spaces in copts",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-05-12 06:33:00 +02:00
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
cflags: ["-include header.h",],
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-05-12 06:33:00 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `[
|
2021-05-12 06:33:00 +02:00
|
|
|
"-include",
|
|
|
|
"header.h",
|
2021-11-08 18:56:31 +01:00
|
|
|
]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-05-21 09:37:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryCppFlagsGoesIntoCopts(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library cppflags usage",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `cc_library {
|
2021-05-12 07:04:58 +02:00
|
|
|
name: "a",
|
|
|
|
srcs: ["a.cpp"],
|
2021-09-10 16:06:32 +02:00
|
|
|
cflags: ["-Wall"],
|
2021-05-12 07:04:58 +02:00
|
|
|
cppflags: [
|
|
|
|
"-fsigned-char",
|
|
|
|
"-pedantic",
|
2021-09-10 16:06:32 +02:00
|
|
|
],
|
2021-05-12 07:04:58 +02:00
|
|
|
arch: {
|
|
|
|
arm64: {
|
|
|
|
cppflags: ["-DARM64=1"],
|
2021-09-10 16:06:32 +02:00
|
|
|
},
|
2021-06-03 19:43:01 +02:00
|
|
|
},
|
2021-05-12 07:04:58 +02:00
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
cppflags: ["-DANDROID=1"],
|
2021-09-10 16:06:32 +02:00
|
|
|
},
|
2021-06-03 19:43:01 +02:00
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-05-12 07:04:58 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"copts": `["-Wall"]`,
|
|
|
|
"cppflags": `[
|
2021-05-25 18:10:58 +02:00
|
|
|
"-fsigned-char",
|
|
|
|
"-pedantic",
|
2021-05-12 07:04:58 +02:00
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/arch:arm64": ["-DARM64=1"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os:android": ["-DANDROID=1"],
|
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs": `["a.cpp"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-03-24 15:04:33 +01:00
|
|
|
}
|
2021-05-27 08:15:54 +02:00
|
|
|
|
2021-06-02 22:02:22 +02:00
|
|
|
func TestCcLibraryExcludeLibs(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{},
|
|
|
|
Blueprint: soongCcLibraryStaticPreamble + `
|
2021-06-02 22:02:22 +02:00
|
|
|
cc_library {
|
|
|
|
name: "foo_static",
|
|
|
|
srcs: ["common.c"],
|
|
|
|
whole_static_libs: [
|
|
|
|
"arm_whole_static_lib_excludes",
|
|
|
|
"malloc_not_svelte_whole_static_lib_excludes"
|
|
|
|
],
|
|
|
|
static_libs: [
|
|
|
|
"arm_static_lib_excludes",
|
|
|
|
"malloc_not_svelte_static_lib_excludes"
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"arm_shared_lib_excludes",
|
|
|
|
],
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
exclude_shared_libs: [
|
|
|
|
"arm_shared_lib_excludes",
|
|
|
|
],
|
|
|
|
exclude_static_libs: [
|
|
|
|
"arm_static_lib_excludes",
|
|
|
|
"arm_whole_static_lib_excludes",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
product_variables: {
|
|
|
|
malloc_not_svelte: {
|
|
|
|
shared_libs: ["malloc_not_svelte_shared_lib"],
|
|
|
|
whole_static_libs: ["malloc_not_svelte_whole_static_lib"],
|
|
|
|
exclude_static_libs: [
|
|
|
|
"malloc_not_svelte_static_lib_excludes",
|
|
|
|
"malloc_not_svelte_whole_static_lib_excludes",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-06-02 22:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "arm_whole_static_lib_excludes",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "malloc_not_svelte_whole_static_lib",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "malloc_not_svelte_whole_static_lib_excludes",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "arm_static_lib_excludes",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "malloc_not_svelte_static_lib_excludes",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "arm_shared_lib_excludes",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "malloc_not_svelte_shared_lib",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo_static", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"implementation_deps": `select({
|
2021-06-02 22:02:22 +02:00
|
|
|
"//build/bazel/platforms/arch:arm": [],
|
2021-09-20 21:14:39 +02:00
|
|
|
"//conditions:default": [":arm_static_lib_excludes_bp2build_cc_library_static"],
|
2021-06-02 22:02:22 +02:00
|
|
|
}) + select({
|
|
|
|
"//build/bazel/product_variables:malloc_not_svelte": [],
|
2021-09-20 21:14:39 +02:00
|
|
|
"//conditions:default": [":malloc_not_svelte_static_lib_excludes_bp2build_cc_library_static"],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"implementation_dynamic_deps": `select({
|
2021-09-22 21:52:58 +02:00
|
|
|
"//build/bazel/platforms/arch:arm": [],
|
|
|
|
"//conditions:default": [":arm_shared_lib_excludes"],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/product_variables:malloc_not_svelte": [":malloc_not_svelte_shared_lib"],
|
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs_c": `["common.c"]`,
|
|
|
|
"whole_archive_deps": `select({
|
2021-06-02 22:02:22 +02:00
|
|
|
"//build/bazel/platforms/arch:arm": [],
|
2021-09-20 21:14:39 +02:00
|
|
|
"//conditions:default": [":arm_whole_static_lib_excludes_bp2build_cc_library_static"],
|
2021-06-02 22:02:22 +02:00
|
|
|
}) + select({
|
2021-09-20 21:14:39 +02:00
|
|
|
"//build/bazel/product_variables:malloc_not_svelte": [":malloc_not_svelte_whole_static_lib_bp2build_cc_library_static"],
|
|
|
|
"//conditions:default": [":malloc_not_svelte_whole_static_lib_excludes_bp2build_cc_library_static"],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-06-02 22:02:22 +02:00
|
|
|
}
|
2021-06-03 19:43:01 +02:00
|
|
|
|
2022-08-30 08:27:01 +02:00
|
|
|
func TestCcLibraryProductVariablesHeaderLibs(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{},
|
|
|
|
Blueprint: soongCcLibraryStaticPreamble + `
|
|
|
|
cc_library {
|
|
|
|
name: "foo_static",
|
|
|
|
srcs: ["common.c"],
|
|
|
|
product_variables: {
|
|
|
|
malloc_not_svelte: {
|
|
|
|
header_libs: ["malloc_not_svelte_header_lib"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "malloc_not_svelte_header_lib",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo_static", AttrNameToString{
|
|
|
|
"implementation_deps": `select({
|
|
|
|
"//build/bazel/product_variables:malloc_not_svelte": [":malloc_not_svelte_header_lib"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"srcs_c": `["common.c"]`,
|
|
|
|
"target_compatible_with": `["//build/bazel/platforms/os:android"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-03 19:43:01 +02:00
|
|
|
func TestCCLibraryNoCrtTrue(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
2023-01-30 23:53:04 +01:00
|
|
|
Description: "cc_library - nocrt: true disables feature",
|
2022-06-21 21:28:33 +02:00
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-06-03 19:43:01 +02:00
|
|
|
"impl.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-06-03 19:43:01 +02:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
2021-09-17 13:38:09 +02:00
|
|
|
nocrt: true,
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-06-03 19:43:01 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2023-01-30 23:53:04 +01:00
|
|
|
"features": `["-link_crt"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs": `["impl.cpp"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-06-03 19:43:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCCLibraryNoCrtFalse(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library - nocrt: false - does not emit attribute",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-06-03 19:43:01 +02:00
|
|
|
"impl.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-06-03 19:43:01 +02:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
2021-09-17 13:38:09 +02:00
|
|
|
nocrt: false,
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-06-03 19:43:01 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs": `["impl.cpp"]`,
|
|
|
|
}),
|
2021-11-08 18:56:31 +01:00
|
|
|
})
|
2021-06-03 19:43:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCCLibraryNoCrtArchVariant(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library - nocrt in select",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-06-03 19:43:01 +02:00
|
|
|
"impl.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-06-03 19:43:01 +02:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
|
|
|
arch: {
|
|
|
|
arm: {
|
2021-09-17 13:38:09 +02:00
|
|
|
nocrt: true,
|
2021-06-03 19:43:01 +02:00
|
|
|
},
|
|
|
|
x86: {
|
2021-09-17 13:38:09 +02:00
|
|
|
nocrt: false,
|
2021-06-03 19:43:01 +02:00
|
|
|
},
|
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-06-03 19:43:01 +02:00
|
|
|
}
|
2021-09-17 13:38:09 +02:00
|
|
|
`,
|
2023-01-30 23:53:04 +01:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/arch:arm": ["-link_crt"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"srcs": `["impl.cpp"]`,
|
|
|
|
}),
|
2021-09-17 13:38:09 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCCLibraryNoLibCrtTrue(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-09-17 13:38:09 +02:00
|
|
|
"impl.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-09-17 13:38:09 +02:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
|
|
|
no_libcrt: true,
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
2021-06-03 19:43:01 +02:00
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2023-01-30 23:53:04 +01:00
|
|
|
"features": `["-use_libcrt"]`,
|
|
|
|
"srcs": `["impl.cpp"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
func makeCcLibraryTargets(name string, attrs AttrNameToString) []string {
|
2021-12-03 23:27:16 +01:00
|
|
|
STATIC_ONLY_ATTRS := map[string]bool{}
|
|
|
|
SHARED_ONLY_ATTRS := map[string]bool{
|
|
|
|
"link_crt": true,
|
|
|
|
"additional_linker_inputs": true,
|
|
|
|
"linkopts": true,
|
|
|
|
"strip": true,
|
2022-02-01 18:54:09 +01:00
|
|
|
"inject_bssl_hash": true,
|
2022-11-12 19:47:07 +01:00
|
|
|
"stubs_symbol_file": true,
|
2022-09-16 15:01:29 +02:00
|
|
|
"use_version_lib": true,
|
2021-12-03 23:27:16 +01:00
|
|
|
}
|
2022-07-27 09:22:06 +02:00
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
sharedAttrs := AttrNameToString{}
|
|
|
|
staticAttrs := AttrNameToString{}
|
2021-12-03 23:27:16 +01:00
|
|
|
for key, val := range attrs {
|
|
|
|
if _, staticOnly := STATIC_ONLY_ATTRS[key]; !staticOnly {
|
|
|
|
sharedAttrs[key] = val
|
|
|
|
}
|
|
|
|
if _, sharedOnly := SHARED_ONLY_ATTRS[key]; !sharedOnly {
|
|
|
|
staticAttrs[key] = val
|
|
|
|
}
|
|
|
|
}
|
2022-08-31 20:28:19 +02:00
|
|
|
sharedTarget := MakeBazelTarget("cc_library_shared", name, sharedAttrs)
|
|
|
|
staticTarget := MakeBazelTarget("cc_library_static", name+"_bp2build_cc_library_static", staticAttrs)
|
2021-12-03 23:27:16 +01:00
|
|
|
|
|
|
|
return []string{staticTarget, sharedTarget}
|
2021-06-03 19:43:01 +02:00
|
|
|
}
|
|
|
|
|
2021-09-17 13:38:09 +02:00
|
|
|
func TestCCLibraryNoLibCrtFalse(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-06-03 19:43:01 +02:00
|
|
|
"impl.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-06-03 19:43:01 +02:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
|
|
|
no_libcrt: false,
|
2021-09-17 13:38:09 +02:00
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2023-01-30 23:53:04 +01:00
|
|
|
"srcs": `["impl.cpp"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
})
|
2021-09-17 13:38:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCCLibraryNoLibCrtArchVariant(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-09-17 13:38:09 +02:00
|
|
|
"impl.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-09-17 13:38:09 +02:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
2021-06-03 19:43:01 +02:00
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
no_libcrt: true,
|
|
|
|
},
|
|
|
|
x86: {
|
|
|
|
no_libcrt: true,
|
|
|
|
},
|
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-06-03 19:43:01 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs": `["impl.cpp"]`,
|
2023-01-30 23:53:04 +01:00
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/arch:arm": ["-use_libcrt"],
|
|
|
|
"//build/bazel/platforms/arch:x86": ["-use_libcrt"],
|
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
})
|
2021-06-03 19:43:01 +02:00
|
|
|
}
|
2021-06-09 09:18:37 +02:00
|
|
|
|
2021-12-10 00:10:18 +01:00
|
|
|
func TestCCLibraryNoLibCrtArchAndTargetVariant(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-12-10 00:10:18 +01:00
|
|
|
"impl.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-12-10 00:10:18 +01:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
no_libcrt: true,
|
|
|
|
},
|
|
|
|
x86: {
|
|
|
|
no_libcrt: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
darwin: {
|
|
|
|
no_libcrt: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2023-01-30 23:53:04 +01:00
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/arch:arm": ["-use_libcrt"],
|
|
|
|
"//build/bazel/platforms/arch:x86": ["-use_libcrt"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os:darwin": ["-use_libcrt"],
|
|
|
|
"//conditions:default": [],
|
2021-12-10 00:10:18 +01:00
|
|
|
})`,
|
2023-01-30 23:53:04 +01:00
|
|
|
"srcs": `["impl.cpp"]`,
|
2021-12-10 00:10:18 +01:00
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCCLibraryNoLibCrtArchAndTargetVariantConflict(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2021-12-10 00:10:18 +01:00
|
|
|
"impl.cpp": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-12-10 00:10:18 +01:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["impl.cpp"],
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
no_libcrt: true,
|
|
|
|
},
|
|
|
|
// This is expected to override the value for darwin_x86_64.
|
|
|
|
x86_64: {
|
|
|
|
no_libcrt: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
darwin: {
|
|
|
|
no_libcrt: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2021-12-10 00:10:18 +01:00
|
|
|
"srcs": `["impl.cpp"]`,
|
2023-01-30 23:53:04 +01:00
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/arch:arm": ["-use_libcrt"],
|
|
|
|
"//build/bazel/platforms/arch:x86_64": ["-use_libcrt"],
|
|
|
|
"//conditions:default": [],
|
2021-12-10 00:10:18 +01:00
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-06-09 09:18:37 +02:00
|
|
|
func TestCcLibraryStrip(t *testing.T) {
|
2021-12-03 23:27:16 +01:00
|
|
|
expectedTargets := []string{}
|
2022-06-21 21:28:33 +02:00
|
|
|
expectedTargets = append(expectedTargets, makeCcLibraryTargets("all", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"strip": `{
|
|
|
|
"all": True,
|
|
|
|
}`,
|
|
|
|
})...)
|
2022-06-21 21:28:33 +02:00
|
|
|
expectedTargets = append(expectedTargets, makeCcLibraryTargets("keep_symbols", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"strip": `{
|
|
|
|
"keep_symbols": True,
|
|
|
|
}`,
|
|
|
|
})...)
|
2022-06-21 21:28:33 +02:00
|
|
|
expectedTargets = append(expectedTargets, makeCcLibraryTargets("keep_symbols_and_debug_frame", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"strip": `{
|
|
|
|
"keep_symbols_and_debug_frame": True,
|
|
|
|
}`,
|
|
|
|
})...)
|
2022-06-21 21:28:33 +02:00
|
|
|
expectedTargets = append(expectedTargets, makeCcLibraryTargets("keep_symbols_list", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"strip": `{
|
|
|
|
"keep_symbols_list": ["symbol"],
|
|
|
|
}`,
|
|
|
|
})...)
|
2022-06-21 21:28:33 +02:00
|
|
|
expectedTargets = append(expectedTargets, makeCcLibraryTargets("none", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"strip": `{
|
|
|
|
"none": True,
|
|
|
|
}`,
|
|
|
|
})...)
|
2022-06-21 21:28:33 +02:00
|
|
|
expectedTargets = append(expectedTargets, makeCcLibraryTargets("nothing", AttrNameToString{})...)
|
2021-12-03 23:27:16 +01:00
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library strip args",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-06-09 09:18:37 +02:00
|
|
|
cc_library {
|
|
|
|
name: "nothing",
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
2021-06-09 09:18:37 +02:00
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "keep_symbols",
|
|
|
|
strip: {
|
2021-09-10 16:06:32 +02:00
|
|
|
keep_symbols: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
2021-06-09 09:18:37 +02:00
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "keep_symbols_and_debug_frame",
|
|
|
|
strip: {
|
2021-09-10 16:06:32 +02:00
|
|
|
keep_symbols_and_debug_frame: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
2021-06-09 09:18:37 +02:00
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "none",
|
|
|
|
strip: {
|
2021-09-10 16:06:32 +02:00
|
|
|
none: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
2021-06-09 09:18:37 +02:00
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "keep_symbols_list",
|
|
|
|
strip: {
|
2021-09-10 16:06:32 +02:00
|
|
|
keep_symbols_list: ["symbol"],
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
2021-06-09 09:18:37 +02:00
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "all",
|
|
|
|
strip: {
|
2021-09-10 16:06:32 +02:00
|
|
|
all: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
2021-06-09 09:18:37 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: expectedTargets,
|
2021-06-09 09:18:37 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryStripWithArch(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library strip args",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-06-09 09:18:37 +02:00
|
|
|
cc_library {
|
|
|
|
name: "multi-arch",
|
|
|
|
target: {
|
|
|
|
darwin: {
|
|
|
|
strip: {
|
|
|
|
keep_symbols_list: ["foo", "bar"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
strip: {
|
|
|
|
keep_symbols_and_debug_frame: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
arm64: {
|
|
|
|
strip: {
|
|
|
|
keep_symbols: true,
|
|
|
|
},
|
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
},
|
|
|
|
include_build_directory: false,
|
2021-06-09 09:18:37 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("multi-arch", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"strip": `{
|
2021-06-09 09:18:37 +02:00
|
|
|
"keep_symbols": select({
|
|
|
|
"//build/bazel/platforms/arch:arm64": True,
|
|
|
|
"//conditions:default": None,
|
|
|
|
}),
|
|
|
|
"keep_symbols_and_debug_frame": select({
|
|
|
|
"//build/bazel/platforms/arch:arm": True,
|
|
|
|
"//conditions:default": None,
|
|
|
|
}),
|
|
|
|
"keep_symbols_list": select({
|
|
|
|
"//build/bazel/platforms/os:darwin": [
|
|
|
|
"foo",
|
|
|
|
"bar",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}),
|
2021-11-08 18:56:31 +01:00
|
|
|
}`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-06-09 09:18:37 +02:00
|
|
|
}
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
|
|
|
|
func TestCcLibrary_SystemSharedLibsRootEmpty(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_libs empty at root",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
cc_library {
|
|
|
|
name: "root_empty",
|
2021-09-10 16:06:32 +02:00
|
|
|
system_shared_libs: [],
|
|
|
|
include_build_directory: false,
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("root_empty", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"system_dynamic_deps": `[]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrary_SystemSharedLibsStaticEmpty(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_libs empty for static variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
cc_library {
|
|
|
|
name: "static_empty",
|
|
|
|
static: {
|
2021-09-10 16:06:32 +02:00
|
|
|
system_shared_libs: [],
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "static_empty_bp2build_cc_library_static", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"system_dynamic_deps": "[]",
|
2021-11-08 18:56:31 +01:00
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "static_empty", AttrNameToString{}),
|
2021-11-08 18:56:31 +01:00
|
|
|
},
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrary_SystemSharedLibsSharedEmpty(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_libs empty for shared variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
cc_library {
|
|
|
|
name: "shared_empty",
|
|
|
|
shared: {
|
2021-09-10 16:06:32 +02:00
|
|
|
system_shared_libs: [],
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "shared_empty_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "shared_empty", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"system_dynamic_deps": "[]",
|
2021-11-08 18:56:31 +01:00
|
|
|
}),
|
|
|
|
},
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrary_SystemSharedLibsSharedBionicEmpty(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_libs empty for shared, bionic variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
cc_library {
|
|
|
|
name: "shared_empty",
|
|
|
|
target: {
|
|
|
|
bionic: {
|
|
|
|
shared: {
|
|
|
|
system_shared_libs: [],
|
|
|
|
}
|
|
|
|
}
|
2021-09-10 16:06:32 +02:00
|
|
|
},
|
|
|
|
include_build_directory: false,
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "shared_empty_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "shared_empty", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"system_dynamic_deps": "[]",
|
2021-11-08 18:56:31 +01:00
|
|
|
}),
|
|
|
|
},
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrary_SystemSharedLibsLinuxBionicEmpty(t *testing.T) {
|
|
|
|
// Note that this behavior is technically incorrect (it's a simplification).
|
|
|
|
// The correct behavior would be if bp2build wrote `system_dynamic_deps = []`
|
|
|
|
// only for linux_bionic, but `android` had `["libc", "libdl", "libm"].
|
|
|
|
// b/195791252 tracks the fix.
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_libs empty for linux_bionic variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2022-12-12 23:26:34 +01:00
|
|
|
cc_library {
|
|
|
|
name: "libc_musl",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
cc_library {
|
|
|
|
name: "target_linux_bionic_empty",
|
|
|
|
target: {
|
|
|
|
linux_bionic: {
|
|
|
|
system_shared_libs: [],
|
|
|
|
},
|
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("target_linux_bionic_empty", AttrNameToString{
|
2022-12-12 23:26:34 +01:00
|
|
|
"system_dynamic_deps": `select({
|
|
|
|
"//build/bazel/platforms/os:linux_musl": [":libc_musl"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrary_SystemSharedLibsBionicEmpty(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_libs empty for bionic variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2022-12-12 23:26:34 +01:00
|
|
|
cc_library {
|
|
|
|
name: "libc_musl",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
cc_library {
|
|
|
|
name: "target_bionic_empty",
|
|
|
|
target: {
|
|
|
|
bionic: {
|
|
|
|
system_shared_libs: [],
|
|
|
|
},
|
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("target_bionic_empty", AttrNameToString{
|
2022-12-12 23:26:34 +01:00
|
|
|
"system_dynamic_deps": `select({
|
|
|
|
"//build/bazel/platforms/os:linux_musl": [":libc_musl"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
|
2022-12-12 23:26:34 +01:00
|
|
|
func TestCcLibrary_SystemSharedLibsMuslEmpty(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_lib empty for musl variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
|
|
|
cc_library {
|
|
|
|
name: "libc_musl",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "target_musl_empty",
|
|
|
|
target: {
|
|
|
|
musl: {
|
|
|
|
system_shared_libs: [],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("target_musl_empty", AttrNameToString{
|
|
|
|
"system_dynamic_deps": `[]`,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrary_SystemSharedLibsLinuxMuslEmpty(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_lib empty for linux_musl variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
|
|
|
cc_library {
|
|
|
|
name: "libc_musl",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "target_linux_musl_empty",
|
|
|
|
target: {
|
|
|
|
linux_musl: {
|
|
|
|
system_shared_libs: [],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("target_linux_musl_empty", AttrNameToString{
|
|
|
|
"system_dynamic_deps": `[]`,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
func TestCcLibrary_SystemSharedLibsSharedAndRoot(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library system_shared_libs set for shared and root",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-09-10 16:06:32 +02:00
|
|
|
cc_library {
|
|
|
|
name: "libc",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "libm",
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
system_shared_libs: ["libc"],
|
|
|
|
shared: {
|
2021-09-10 16:06:32 +02:00
|
|
|
system_shared_libs: ["libm"],
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
},
|
2021-09-10 16:06:32 +02:00
|
|
|
include_build_directory: false,
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-11-08 18:56:31 +01:00
|
|
|
"system_dynamic_deps": `[":libc"]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"system_dynamic_deps": `[
|
|
|
|
":libc",
|
|
|
|
":libm",
|
|
|
|
]`,
|
|
|
|
}),
|
2021-11-08 18:56:31 +01:00
|
|
|
},
|
bp2build: handle system_shared_libs
- If no system_shared_libs is specified, bp2build writes no attribute
value. In this case, the bazel library macros determine the correct
default behavior.
- If any system_shared_libs is specified for any variant, then bp2build
writes the value verbatim. This includes if an empty list is specified,
as this should override defaulting behavior.
Note this defaulting behavior is incomplete and will be incorrect in
corner cases. For example, if, in an Android.bp, system_shared_libs is
specified for os.linux_bionic but not for os.android, then the bazel
default for os.android will be incorrect. However, there are no current
modules in AOSP which fit this case.
As a related fix, supports static struct for cc_library_static.
Also, removes some elements from the bp2build denylist.
Test: mixed_droid CI
Change-Id: Iee5feeaaf05e8e7209c7a90c913173832ad7bf91
2021-08-04 03:01:05 +02:00
|
|
|
})
|
|
|
|
}
|
2021-10-01 20:45:30 +02:00
|
|
|
|
|
|
|
func TestCcLibraryOsSelects(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library - selects for all os targets",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{},
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2021-10-01 20:45:30 +02:00
|
|
|
cc_library {
|
|
|
|
name: "foo-lib",
|
|
|
|
srcs: ["base.cpp"],
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
srcs: ["android.cpp"],
|
|
|
|
},
|
|
|
|
linux: {
|
|
|
|
srcs: ["linux.cpp"],
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
srcs: ["linux_glibc.cpp"],
|
|
|
|
},
|
|
|
|
darwin: {
|
|
|
|
srcs: ["darwin.cpp"],
|
|
|
|
},
|
|
|
|
bionic: {
|
|
|
|
srcs: ["bionic.cpp"],
|
|
|
|
},
|
|
|
|
linux_musl: {
|
|
|
|
srcs: ["linux_musl.cpp"],
|
|
|
|
},
|
|
|
|
windows: {
|
|
|
|
srcs: ["windows.cpp"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"srcs": `["base.cpp"] + select({
|
2021-10-01 20:45:30 +02:00
|
|
|
"//build/bazel/platforms/os:android": [
|
|
|
|
"linux.cpp",
|
2021-10-11 21:40:35 +02:00
|
|
|
"bionic.cpp",
|
2021-10-11 21:41:03 +02:00
|
|
|
"android.cpp",
|
2021-10-01 20:45:30 +02:00
|
|
|
],
|
|
|
|
"//build/bazel/platforms/os:darwin": ["darwin.cpp"],
|
|
|
|
"//build/bazel/platforms/os:linux_bionic": [
|
|
|
|
"linux.cpp",
|
2021-10-11 21:40:35 +02:00
|
|
|
"bionic.cpp",
|
2021-10-01 20:45:30 +02:00
|
|
|
],
|
2022-12-21 00:29:31 +01:00
|
|
|
"//build/bazel/platforms/os:linux_glibc": [
|
|
|
|
"linux.cpp",
|
|
|
|
"linux_glibc.cpp",
|
|
|
|
],
|
2021-10-01 20:45:30 +02:00
|
|
|
"//build/bazel/platforms/os:linux_musl": [
|
2021-10-11 21:40:35 +02:00
|
|
|
"linux.cpp",
|
2021-10-11 21:41:03 +02:00
|
|
|
"linux_musl.cpp",
|
2021-10-01 20:45:30 +02:00
|
|
|
],
|
|
|
|
"//build/bazel/platforms/os:windows": ["windows.cpp"],
|
|
|
|
"//conditions:default": [],
|
2021-11-08 18:56:31 +01:00
|
|
|
})`,
|
2021-12-03 23:27:16 +01:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
2021-10-08 12:41:31 +02:00
|
|
|
}
|
|
|
|
|
2022-02-01 18:54:09 +01:00
|
|
|
func TestLibcryptoHashInjection(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library - libcrypto hash injection",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{},
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
2022-02-01 18:54:09 +01:00
|
|
|
cc_library {
|
|
|
|
name: "libcrypto",
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
inject_bssl_hash: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("libcrypto", AttrNameToString{
|
2022-02-01 18:54:09 +01:00
|
|
|
"inject_bssl_hash": `select({
|
|
|
|
"//build/bazel/platforms/os:android": True,
|
|
|
|
"//conditions:default": None,
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-11 19:44:33 +02:00
|
|
|
func TestCcLibraryCppStdWithGnuExtensions_ConvertsToFeatureAttr(t *testing.T) {
|
2021-10-08 12:41:31 +02:00
|
|
|
type testCase struct {
|
|
|
|
cpp_std string
|
2021-11-29 23:52:41 +01:00
|
|
|
c_std string
|
2021-10-08 12:41:31 +02:00
|
|
|
gnu_extensions string
|
|
|
|
bazel_cpp_std string
|
2021-11-29 23:52:41 +01:00
|
|
|
bazel_c_std string
|
2021-10-08 12:41:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
testCases := []testCase{
|
|
|
|
// Existing usages of cpp_std in AOSP are:
|
|
|
|
// experimental, c++11, c++17, c++2a, c++98, gnu++11, gnu++17
|
|
|
|
//
|
|
|
|
// not set, only emit if gnu_extensions is disabled. the default (gnu+17
|
|
|
|
// is set in the toolchain.)
|
|
|
|
{cpp_std: "", gnu_extensions: "", bazel_cpp_std: ""},
|
2022-05-26 05:19:37 +02:00
|
|
|
{cpp_std: "", gnu_extensions: "false", bazel_cpp_std: "cpp_std_default_no_gnu", bazel_c_std: "c_std_default_no_gnu"},
|
2021-10-08 12:41:31 +02:00
|
|
|
{cpp_std: "", gnu_extensions: "true", bazel_cpp_std: ""},
|
|
|
|
// experimental defaults to gnu++2a
|
2022-05-26 05:19:37 +02:00
|
|
|
{cpp_std: "experimental", gnu_extensions: "", bazel_cpp_std: "cpp_std_experimental"},
|
|
|
|
{cpp_std: "experimental", gnu_extensions: "false", bazel_cpp_std: "cpp_std_experimental_no_gnu", bazel_c_std: "c_std_default_no_gnu"},
|
|
|
|
{cpp_std: "experimental", gnu_extensions: "true", bazel_cpp_std: "cpp_std_experimental"},
|
2021-10-08 12:41:31 +02:00
|
|
|
// Explicitly setting a c++ std does not use replace gnu++ std even if
|
|
|
|
// gnu_extensions is true.
|
|
|
|
// "c++11",
|
|
|
|
{cpp_std: "c++11", gnu_extensions: "", bazel_cpp_std: "c++11"},
|
2022-05-26 05:19:37 +02:00
|
|
|
{cpp_std: "c++11", gnu_extensions: "false", bazel_cpp_std: "c++11", bazel_c_std: "c_std_default_no_gnu"},
|
2021-10-08 12:41:31 +02:00
|
|
|
{cpp_std: "c++11", gnu_extensions: "true", bazel_cpp_std: "c++11"},
|
|
|
|
// "c++17",
|
|
|
|
{cpp_std: "c++17", gnu_extensions: "", bazel_cpp_std: "c++17"},
|
2022-05-26 05:19:37 +02:00
|
|
|
{cpp_std: "c++17", gnu_extensions: "false", bazel_cpp_std: "c++17", bazel_c_std: "c_std_default_no_gnu"},
|
2021-10-08 12:41:31 +02:00
|
|
|
{cpp_std: "c++17", gnu_extensions: "true", bazel_cpp_std: "c++17"},
|
|
|
|
// "c++2a",
|
|
|
|
{cpp_std: "c++2a", gnu_extensions: "", bazel_cpp_std: "c++2a"},
|
2022-05-26 05:19:37 +02:00
|
|
|
{cpp_std: "c++2a", gnu_extensions: "false", bazel_cpp_std: "c++2a", bazel_c_std: "c_std_default_no_gnu"},
|
2021-10-08 12:41:31 +02:00
|
|
|
{cpp_std: "c++2a", gnu_extensions: "true", bazel_cpp_std: "c++2a"},
|
|
|
|
// "c++98",
|
|
|
|
{cpp_std: "c++98", gnu_extensions: "", bazel_cpp_std: "c++98"},
|
2022-05-26 05:19:37 +02:00
|
|
|
{cpp_std: "c++98", gnu_extensions: "false", bazel_cpp_std: "c++98", bazel_c_std: "c_std_default_no_gnu"},
|
2021-10-08 12:41:31 +02:00
|
|
|
{cpp_std: "c++98", gnu_extensions: "true", bazel_cpp_std: "c++98"},
|
|
|
|
// gnu++ is replaced with c++ if gnu_extensions is explicitly false.
|
|
|
|
// "gnu++11",
|
|
|
|
{cpp_std: "gnu++11", gnu_extensions: "", bazel_cpp_std: "gnu++11"},
|
2022-05-26 05:19:37 +02:00
|
|
|
{cpp_std: "gnu++11", gnu_extensions: "false", bazel_cpp_std: "c++11", bazel_c_std: "c_std_default_no_gnu"},
|
2021-10-08 12:41:31 +02:00
|
|
|
{cpp_std: "gnu++11", gnu_extensions: "true", bazel_cpp_std: "gnu++11"},
|
|
|
|
// "gnu++17",
|
|
|
|
{cpp_std: "gnu++17", gnu_extensions: "", bazel_cpp_std: "gnu++17"},
|
2022-05-26 05:19:37 +02:00
|
|
|
{cpp_std: "gnu++17", gnu_extensions: "false", bazel_cpp_std: "c++17", bazel_c_std: "c_std_default_no_gnu"},
|
2021-10-08 12:41:31 +02:00
|
|
|
{cpp_std: "gnu++17", gnu_extensions: "true", bazel_cpp_std: "gnu++17"},
|
2021-11-29 23:52:41 +01:00
|
|
|
|
|
|
|
// some c_std test cases
|
2022-05-26 05:19:37 +02:00
|
|
|
{c_std: "experimental", gnu_extensions: "", bazel_c_std: "c_std_experimental"},
|
|
|
|
{c_std: "experimental", gnu_extensions: "false", bazel_cpp_std: "cpp_std_default_no_gnu", bazel_c_std: "c_std_experimental_no_gnu"},
|
|
|
|
{c_std: "experimental", gnu_extensions: "true", bazel_c_std: "c_std_experimental"},
|
2021-11-29 23:52:41 +01:00
|
|
|
{c_std: "gnu11", cpp_std: "gnu++17", gnu_extensions: "", bazel_cpp_std: "gnu++17", bazel_c_std: "gnu11"},
|
|
|
|
{c_std: "gnu11", cpp_std: "gnu++17", gnu_extensions: "false", bazel_cpp_std: "c++17", bazel_c_std: "c11"},
|
|
|
|
{c_std: "gnu11", cpp_std: "gnu++17", gnu_extensions: "true", bazel_cpp_std: "gnu++17", bazel_c_std: "gnu11"},
|
2021-10-08 12:41:31 +02:00
|
|
|
}
|
2021-11-29 23:52:41 +01:00
|
|
|
for i, tc := range testCases {
|
2022-05-26 05:19:37 +02:00
|
|
|
name := fmt.Sprintf("cpp std: %q, c std: %q, gnu_extensions: %q", tc.cpp_std, tc.c_std, tc.gnu_extensions)
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
name_prefix := fmt.Sprintf("a_%v", i)
|
|
|
|
cppStdProp := ""
|
|
|
|
if tc.cpp_std != "" {
|
|
|
|
cppStdProp = fmt.Sprintf(" cpp_std: \"%s\",", tc.cpp_std)
|
|
|
|
}
|
|
|
|
cStdProp := ""
|
|
|
|
if tc.c_std != "" {
|
|
|
|
cStdProp = fmt.Sprintf(" c_std: \"%s\",", tc.c_std)
|
|
|
|
}
|
|
|
|
gnuExtensionsProp := ""
|
|
|
|
if tc.gnu_extensions != "" {
|
|
|
|
gnuExtensionsProp = fmt.Sprintf(" gnu_extensions: %s,", tc.gnu_extensions)
|
|
|
|
}
|
2022-06-21 21:28:33 +02:00
|
|
|
attrs := AttrNameToString{}
|
2022-05-26 05:19:37 +02:00
|
|
|
if tc.bazel_cpp_std != "" {
|
|
|
|
attrs["cpp_std"] = fmt.Sprintf(`"%s"`, tc.bazel_cpp_std)
|
|
|
|
}
|
|
|
|
if tc.bazel_c_std != "" {
|
|
|
|
attrs["c_std"] = fmt.Sprintf(`"%s"`, tc.bazel_c_std)
|
|
|
|
}
|
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: fmt.Sprintf(
|
2022-05-26 05:19:37 +02:00
|
|
|
"cc_library with cpp_std: %s and gnu_extensions: %s", tc.cpp_std, tc.gnu_extensions),
|
2022-06-21 21:28:33 +02:00
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + fmt.Sprintf(`
|
2021-10-08 12:41:31 +02:00
|
|
|
cc_library {
|
2021-11-29 23:52:41 +01:00
|
|
|
name: "%s_full",
|
2021-10-08 12:41:31 +02:00
|
|
|
%s // cpp_std: *string
|
2021-11-29 23:52:41 +01:00
|
|
|
%s // c_std: *string
|
2021-10-08 12:41:31 +02:00
|
|
|
%s // gnu_extensions: *bool
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
2021-11-29 23:52:41 +01:00
|
|
|
`, name_prefix, cppStdProp, cStdProp, gnuExtensionsProp),
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets(name_prefix+"_full", attrs),
|
2022-05-26 05:19:37 +02:00
|
|
|
})
|
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryStaticTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: fmt.Sprintf(
|
2022-05-26 05:19:37 +02:00
|
|
|
"cc_library_static with cpp_std: %s and gnu_extensions: %s", tc.cpp_std, tc.gnu_extensions),
|
2022-06-21 21:28:33 +02:00
|
|
|
ModuleTypeUnderTest: "cc_library_static",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryStaticFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + fmt.Sprintf(`
|
2021-10-11 19:44:33 +02:00
|
|
|
cc_library_static {
|
2021-11-29 23:52:41 +01:00
|
|
|
name: "%s_static",
|
2021-10-11 19:44:33 +02:00
|
|
|
%s // cpp_std: *string
|
2021-11-29 23:52:41 +01:00
|
|
|
%s // c_std: *string
|
2021-10-11 19:44:33 +02:00
|
|
|
%s // gnu_extensions: *bool
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
2021-11-29 23:52:41 +01:00
|
|
|
`, name_prefix, cppStdProp, cStdProp, gnuExtensionsProp),
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", name_prefix+"_static", attrs),
|
2022-05-26 05:19:37 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibrarySharedTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: fmt.Sprintf(
|
2022-05-26 05:19:37 +02:00
|
|
|
"cc_library_shared with cpp_std: %s and gnu_extensions: %s", tc.cpp_std, tc.gnu_extensions),
|
2022-06-21 21:28:33 +02:00
|
|
|
ModuleTypeUnderTest: "cc_library_shared",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibrarySharedFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + fmt.Sprintf(`
|
2021-10-11 19:44:33 +02:00
|
|
|
cc_library_shared {
|
2021-11-29 23:52:41 +01:00
|
|
|
name: "%s_shared",
|
2021-10-11 19:44:33 +02:00
|
|
|
%s // cpp_std: *string
|
2021-11-29 23:52:41 +01:00
|
|
|
%s // c_std: *string
|
2021-10-11 19:44:33 +02:00
|
|
|
%s // gnu_extensions: *bool
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
2021-11-29 23:52:41 +01:00
|
|
|
`, name_prefix, cppStdProp, cStdProp, gnuExtensionsProp),
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", name_prefix+"_shared", attrs),
|
2022-05-26 05:19:37 +02:00
|
|
|
},
|
|
|
|
})
|
2021-10-08 12:41:31 +02:00
|
|
|
})
|
|
|
|
}
|
2021-10-01 20:45:30 +02:00
|
|
|
}
|
2021-09-28 15:19:17 +02:00
|
|
|
|
|
|
|
func TestCcLibraryProtoSimple(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-09-28 15:19:17 +02:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.proto"],
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
|
2022-02-15 02:49:15 +01:00
|
|
|
"srcs": `["foo.proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"deps": `[":foo_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-09-14 16:49:13 +02:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2021-09-28 15:19:17 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryProtoNoCanonicalPathFromRoot(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-09-28 15:19:17 +02:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.proto"],
|
|
|
|
proto: { canonical_path_from_root: false},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
|
2022-02-15 02:49:15 +01:00
|
|
|
"srcs": `["foo.proto"]`,
|
|
|
|
"strip_import_prefix": `""`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"deps": `[":foo_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-09-14 16:49:13 +02:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2021-09-28 15:19:17 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryProtoExplicitCanonicalPathFromRoot(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-09-28 15:19:17 +02:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.proto"],
|
|
|
|
proto: { canonical_path_from_root: true},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
|
2022-02-15 02:49:15 +01:00
|
|
|
"srcs": `["foo.proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"deps": `[":foo_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-09-14 16:49:13 +02:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2021-09-28 15:19:17 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryProtoFull(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-09-28 15:19:17 +02:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.proto"],
|
|
|
|
proto: {
|
|
|
|
type: "full",
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"srcs": `["foo.proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_proto_library", "foo_cc_proto", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"deps": `[":foo_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-full"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-09-14 16:49:13 +02:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-full"]`,
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto"]`,
|
2021-09-28 15:19:17 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryProtoLite(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-09-28 15:19:17 +02:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.proto"],
|
|
|
|
proto: {
|
|
|
|
type: "lite",
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"srcs": `["foo.proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"deps": `[":foo_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2021-12-03 23:27:16 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-09-14 16:49:13 +02:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2021-09-28 15:19:17 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryProtoExportHeaders(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-09-28 15:19:17 +02:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.proto"],
|
|
|
|
proto: {
|
|
|
|
export_proto_headers: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"srcs": `["foo.proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
|
2021-09-28 15:19:17 +02:00
|
|
|
"deps": `[":foo_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2021-12-03 23:27:16 +01:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
2021-09-28 15:19:17 +02:00
|
|
|
"whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2021-12-08 21:25:06 +01:00
|
|
|
|
2022-08-18 23:46:13 +02:00
|
|
|
func TestCcLibraryProtoIncludeDirs(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.proto"],
|
|
|
|
proto: {
|
|
|
|
include_dirs: ["external/protobuf/src"],
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
|
|
|
|
"srcs": `["foo.proto"]`,
|
|
|
|
"deps": `["//external/protobuf:libprotobuf-proto"]`,
|
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
|
|
|
|
"deps": `[":foo_proto"]`,
|
|
|
|
}), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-09-14 16:49:13 +02:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
|
2022-08-18 23:46:13 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryProtoIncludeDirsUnknown(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.proto"],
|
|
|
|
proto: {
|
|
|
|
include_dirs: ["external/protobuf/abc"],
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedErr: fmt.Errorf("module \"foo\": Could not find the proto_library target for include dir: external/protobuf/abc"),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-01 20:54:47 +02:00
|
|
|
func TestCcLibraryConvertedProtoFilegroups(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `
|
|
|
|
filegroup {
|
|
|
|
name: "a_fg_proto",
|
|
|
|
srcs: ["a_fg.proto"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: [
|
|
|
|
":a_fg_proto",
|
|
|
|
"a.proto",
|
|
|
|
],
|
|
|
|
proto: {
|
|
|
|
export_proto_headers: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("proto_library", "a_proto", AttrNameToString{
|
2022-09-16 07:18:48 +02:00
|
|
|
"deps": `[":a_fg_proto_bp2build_converted"]`,
|
2022-09-01 20:54:47 +02:00
|
|
|
"srcs": `["a.proto"]`,
|
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "a_cc_proto_lite", AttrNameToString{
|
|
|
|
"deps": `[
|
|
|
|
":a_fg_proto_bp2build_converted",
|
|
|
|
":a_proto",
|
|
|
|
]`,
|
|
|
|
}), MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":a_cc_proto_lite"]`,
|
|
|
|
}), MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":a_cc_proto_lite"]`,
|
|
|
|
}), MakeBazelTargetNoRestrictions("proto_library", "a_fg_proto_bp2build_converted", AttrNameToString{
|
|
|
|
"srcs": `["a_fg.proto"]`,
|
2023-03-23 16:51:49 +01:00
|
|
|
"tags": `[
|
|
|
|
"apex_available=//apex_available:anyapex",
|
|
|
|
"manual",
|
|
|
|
]`,
|
2022-09-01 20:54:47 +02:00
|
|
|
}), MakeBazelTargetNoRestrictions("filegroup", "a_fg_proto", AttrNameToString{
|
|
|
|
"srcs": `["a_fg.proto"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryConvertedProtoFilegroupsNoProtoFiles(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `
|
|
|
|
filegroup {
|
|
|
|
name: "a_fg_proto",
|
|
|
|
srcs: ["a_fg.proto"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: [
|
|
|
|
":a_fg_proto",
|
|
|
|
],
|
|
|
|
proto: {
|
|
|
|
export_proto_headers: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_lite_proto_library", "a_cc_proto_lite", AttrNameToString{
|
|
|
|
"deps": `[":a_fg_proto_bp2build_converted"]`,
|
|
|
|
}), MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":a_cc_proto_lite"]`,
|
|
|
|
}), MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":a_cc_proto_lite"]`,
|
|
|
|
}), MakeBazelTargetNoRestrictions("proto_library", "a_fg_proto_bp2build_converted", AttrNameToString{
|
|
|
|
"srcs": `["a_fg.proto"]`,
|
2023-03-23 16:51:49 +01:00
|
|
|
"tags": `[
|
|
|
|
"apex_available=//apex_available:anyapex",
|
|
|
|
"manual",
|
|
|
|
]`,
|
2022-09-01 20:54:47 +02:00
|
|
|
}), MakeBazelTargetNoRestrictions("filegroup", "a_fg_proto", AttrNameToString{
|
|
|
|
"srcs": `["a_fg.proto"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryExternalConvertedProtoFilegroups(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"path/to/A/Android.bp": `
|
|
|
|
filegroup {
|
|
|
|
name: "a_fg_proto",
|
|
|
|
srcs: ["a_fg.proto"],
|
|
|
|
}`,
|
|
|
|
},
|
|
|
|
Blueprint: soongCcProtoPreamble + `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: [
|
|
|
|
":a_fg_proto",
|
|
|
|
"a.proto",
|
|
|
|
],
|
|
|
|
proto: {
|
|
|
|
export_proto_headers: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("proto_library", "a_proto", AttrNameToString{
|
2022-09-16 07:18:48 +02:00
|
|
|
"deps": `["//path/to/A:a_fg_proto_bp2build_converted"]`,
|
2022-09-01 20:54:47 +02:00
|
|
|
"srcs": `["a.proto"]`,
|
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "a_cc_proto_lite", AttrNameToString{
|
|
|
|
"deps": `[
|
|
|
|
"//path/to/A:a_fg_proto_bp2build_converted",
|
|
|
|
":a_proto",
|
|
|
|
]`,
|
|
|
|
}), MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":a_cc_proto_lite"]`,
|
|
|
|
}), MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":a_cc_proto_lite"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-12-08 21:25:06 +01:00
|
|
|
func TestCcLibraryProtoFilegroups(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble +
|
2021-12-08 21:25:06 +01:00
|
|
|
simpleModuleDoNotConvertBp2build("filegroup", "a_fg_proto") +
|
|
|
|
simpleModuleDoNotConvertBp2build("filegroup", "b_protos") +
|
|
|
|
simpleModuleDoNotConvertBp2build("filegroup", "c-proto-srcs") +
|
|
|
|
simpleModuleDoNotConvertBp2build("filegroup", "proto-srcs-d") + `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: [":a_fg_proto"],
|
|
|
|
proto: {
|
|
|
|
export_proto_headers: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "b",
|
|
|
|
srcs: [":b_protos"],
|
|
|
|
proto: {
|
|
|
|
export_proto_headers: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "c",
|
|
|
|
srcs: [":c-proto-srcs"],
|
|
|
|
proto: {
|
|
|
|
export_proto_headers: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "d",
|
|
|
|
srcs: [":proto-srcs-d"],
|
|
|
|
proto: {
|
|
|
|
export_proto_headers: true,
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("proto_library", "a_proto", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"srcs": `[":a_fg_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "a_cc_proto_lite", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"deps": `[":a_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":a_cc_proto_lite"]`,
|
|
|
|
"srcs": `[":a_fg_proto_cpp_srcs"]`,
|
|
|
|
"srcs_as": `[":a_fg_proto_as_srcs"]`,
|
|
|
|
"srcs_c": `[":a_fg_proto_c_srcs"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":a_cc_proto_lite"]`,
|
|
|
|
"srcs": `[":a_fg_proto_cpp_srcs"]`,
|
|
|
|
"srcs_as": `[":a_fg_proto_as_srcs"]`,
|
|
|
|
"srcs_c": `[":a_fg_proto_c_srcs"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("proto_library", "b_proto", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"srcs": `[":b_protos"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "b_cc_proto_lite", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"deps": `[":b_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "b_bp2build_cc_library_static", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":b_cc_proto_lite"]`,
|
|
|
|
"srcs": `[":b_protos_cpp_srcs"]`,
|
|
|
|
"srcs_as": `[":b_protos_as_srcs"]`,
|
|
|
|
"srcs_c": `[":b_protos_c_srcs"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "b", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":b_cc_proto_lite"]`,
|
|
|
|
"srcs": `[":b_protos_cpp_srcs"]`,
|
|
|
|
"srcs_as": `[":b_protos_as_srcs"]`,
|
|
|
|
"srcs_c": `[":b_protos_c_srcs"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("proto_library", "c_proto", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"srcs": `[":c-proto-srcs"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "c_cc_proto_lite", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"deps": `[":c_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "c_bp2build_cc_library_static", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":c_cc_proto_lite"]`,
|
|
|
|
"srcs": `[":c-proto-srcs_cpp_srcs"]`,
|
|
|
|
"srcs_as": `[":c-proto-srcs_as_srcs"]`,
|
|
|
|
"srcs_c": `[":c-proto-srcs_c_srcs"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "c", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":c_cc_proto_lite"]`,
|
|
|
|
"srcs": `[":c-proto-srcs_cpp_srcs"]`,
|
|
|
|
"srcs_as": `[":c-proto-srcs_as_srcs"]`,
|
|
|
|
"srcs_c": `[":c-proto-srcs_c_srcs"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("proto_library", "d_proto", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"srcs": `[":proto-srcs-d"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_lite_proto_library", "d_cc_proto_lite", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"deps": `[":d_proto"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_static", "d_bp2build_cc_library_static", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":d_cc_proto_lite"]`,
|
|
|
|
"srcs": `[":proto-srcs-d_cpp_srcs"]`,
|
|
|
|
"srcs_as": `[":proto-srcs-d_as_srcs"]`,
|
|
|
|
"srcs_c": `[":proto-srcs-d_c_srcs"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "d", AttrNameToString{
|
2021-12-08 21:25:06 +01:00
|
|
|
"dynamic_deps": `[":libprotobuf-cpp-lite"]`,
|
|
|
|
"whole_archive_deps": `[":d_cc_proto_lite"]`,
|
|
|
|
"srcs": `[":proto-srcs-d_cpp_srcs"]`,
|
|
|
|
"srcs_as": `[":proto-srcs-d_as_srcs"]`,
|
|
|
|
"srcs_c": `[":proto-srcs-d_c_srcs"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2021-12-10 00:10:18 +01:00
|
|
|
|
|
|
|
func TestCcLibraryDisabledArchAndTarget(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-12-10 00:10:18 +01:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.cpp"],
|
2022-05-13 23:20:20 +02:00
|
|
|
host_supported: true,
|
2021-12-10 00:10:18 +01:00
|
|
|
target: {
|
|
|
|
darwin: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
windows: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
linux_glibc_x86: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo", AttrNameToString{
|
2021-12-10 00:10:18 +01:00
|
|
|
"srcs": `["foo.cpp"]`,
|
|
|
|
"target_compatible_with": `select({
|
|
|
|
"//build/bazel/platforms/os_arch:darwin_arm64": ["@platforms//:incompatible"],
|
|
|
|
"//build/bazel/platforms/os_arch:darwin_x86_64": ["@platforms//:incompatible"],
|
|
|
|
"//build/bazel/platforms/os_arch:linux_glibc_x86": ["@platforms//:incompatible"],
|
|
|
|
"//build/bazel/platforms/os_arch:windows_x86": ["@platforms//:incompatible"],
|
|
|
|
"//build/bazel/platforms/os_arch:windows_x86_64": ["@platforms//:incompatible"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryDisabledArchAndTargetWithDefault(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-12-10 00:10:18 +01:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.cpp"],
|
|
|
|
enabled: false,
|
2022-05-13 23:20:20 +02:00
|
|
|
host_supported: true,
|
2021-12-10 00:10:18 +01:00
|
|
|
target: {
|
|
|
|
darwin: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
windows: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
linux_glibc_x86: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo", AttrNameToString{
|
2021-12-10 00:10:18 +01:00
|
|
|
"srcs": `["foo.cpp"]`,
|
|
|
|
"target_compatible_with": `select({
|
|
|
|
"//build/bazel/platforms/os_arch:darwin_arm64": [],
|
|
|
|
"//build/bazel/platforms/os_arch:darwin_x86_64": [],
|
|
|
|
"//conditions:default": ["@platforms//:incompatible"],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrarySharedDisabled(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-12-10 00:10:18 +01:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.cpp"],
|
|
|
|
enabled: false,
|
|
|
|
shared: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
shared: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-08-31 20:28:19 +02:00
|
|
|
ExpectedBazelTargets: []string{MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-12-10 00:10:18 +01:00
|
|
|
"srcs": `["foo.cpp"]`,
|
|
|
|
"target_compatible_with": `["@platforms//:incompatible"]`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2021-12-10 00:10:18 +01:00
|
|
|
"srcs": `["foo.cpp"]`,
|
|
|
|
"target_compatible_with": `select({
|
|
|
|
"//build/bazel/platforms/os:android": ["@platforms//:incompatible"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryStaticDisabledForSomeArch(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2021-12-10 00:10:18 +01:00
|
|
|
name: "foo",
|
2022-05-13 23:20:20 +02:00
|
|
|
host_supported: true,
|
2021-12-10 00:10:18 +01:00
|
|
|
srcs: ["foo.cpp"],
|
|
|
|
shared: {
|
|
|
|
enabled: false
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
darwin: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
windows: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
linux_glibc_x86: {
|
|
|
|
shared: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-08-31 20:28:19 +02:00
|
|
|
ExpectedBazelTargets: []string{MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2021-12-10 00:10:18 +01:00
|
|
|
"srcs": `["foo.cpp"]`,
|
|
|
|
"target_compatible_with": `select({
|
|
|
|
"//build/bazel/platforms/os:windows": ["@platforms//:incompatible"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
2022-08-31 20:28:19 +02:00
|
|
|
}), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2021-12-10 00:10:18 +01:00
|
|
|
"srcs": `["foo.cpp"]`,
|
|
|
|
"target_compatible_with": `select({
|
|
|
|
"//build/bazel/platforms/os_arch:darwin_arm64": [],
|
|
|
|
"//build/bazel/platforms/os_arch:darwin_x86_64": [],
|
|
|
|
"//build/bazel/platforms/os_arch:linux_glibc_x86": [],
|
|
|
|
"//conditions:default": ["@platforms//:incompatible"],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
}})
|
|
|
|
}
|
2022-01-07 15:55:29 +01:00
|
|
|
|
|
|
|
func TestCcLibraryStubs(t *testing.T) {
|
2022-07-27 09:22:06 +02:00
|
|
|
expectedBazelTargets := makeCcLibraryTargets("a", AttrNameToString{
|
2022-11-12 19:47:07 +01:00
|
|
|
"stubs_symbol_file": `"a.map.txt"`,
|
2022-07-27 09:22:06 +02:00
|
|
|
})
|
|
|
|
expectedBazelTargets = append(expectedBazelTargets, makeCcStubSuiteTargets("a", AttrNameToString{
|
2023-03-15 23:06:18 +01:00
|
|
|
"soname": `"a.so"`,
|
|
|
|
"source_library_label": `"//foo/bar:a"`,
|
|
|
|
"stubs_symbol_file": `"a.map.txt"`,
|
2022-07-27 09:22:06 +02:00
|
|
|
"stubs_versions": `[
|
|
|
|
"28",
|
|
|
|
"29",
|
|
|
|
"current",
|
|
|
|
]`,
|
|
|
|
}))
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library stubs",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Dir: "foo/bar",
|
|
|
|
Filesystem: map[string]string{
|
2022-01-07 15:55:29 +01:00
|
|
|
"foo/bar/Android.bp": `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
stubs: { symbol_file: "a.map.txt", versions: ["28", "29", "current"] },
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
include_build_directory: false,
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
},
|
2022-07-27 09:22:06 +02:00
|
|
|
Blueprint: soongCcLibraryPreamble,
|
|
|
|
ExpectedBazelTargets: expectedBazelTargets,
|
2022-01-07 15:55:29 +01:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2022-02-04 21:39:00 +01:00
|
|
|
|
2022-09-09 03:38:47 +02:00
|
|
|
func TestCcApiContributionsWithHdrs(t *testing.T) {
|
|
|
|
bp := `
|
|
|
|
cc_library {
|
|
|
|
name: "libfoo",
|
|
|
|
stubs: { symbol_file: "libfoo.map.txt", versions: ["28", "29", "current"] },
|
|
|
|
llndk: { symbol_file: "libfoo.map.txt", override_export_include_dirs: ["dir2"]},
|
|
|
|
export_include_dirs: ["dir1"],
|
|
|
|
}
|
|
|
|
`
|
|
|
|
expectedBazelTargets := []string{
|
|
|
|
MakeBazelTarget(
|
|
|
|
"cc_api_library_headers",
|
2023-01-27 00:02:00 +01:00
|
|
|
"libfoo.module-libapi.headers",
|
2022-09-09 03:38:47 +02:00
|
|
|
AttrNameToString{
|
|
|
|
"export_includes": `["dir1"]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget(
|
|
|
|
"cc_api_library_headers",
|
|
|
|
"libfoo.vendorapi.headers",
|
|
|
|
AttrNameToString{
|
|
|
|
"export_includes": `["dir2"]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget(
|
|
|
|
"cc_api_contribution",
|
|
|
|
"libfoo.contribution",
|
|
|
|
AttrNameToString{
|
|
|
|
"api": `"libfoo.map.txt"`,
|
|
|
|
"library_name": `"libfoo"`,
|
|
|
|
"api_surfaces": `[
|
2023-01-27 00:02:00 +01:00
|
|
|
"module-libapi",
|
2022-09-09 03:38:47 +02:00
|
|
|
"vendorapi",
|
|
|
|
]`,
|
|
|
|
"hdrs": `[
|
2023-01-27 00:02:00 +01:00
|
|
|
":libfoo.module-libapi.headers",
|
2022-09-09 03:38:47 +02:00
|
|
|
":libfoo.vendorapi.headers",
|
|
|
|
]`,
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
RunApiBp2BuildTestCase(t, cc.RegisterLibraryBuildComponents, Bp2buildTestCase{
|
|
|
|
Blueprint: bp,
|
2023-01-27 00:02:00 +01:00
|
|
|
Description: "cc API contributions to module-libapi and vendorapi",
|
2022-09-09 03:38:47 +02:00
|
|
|
ExpectedBazelTargets: expectedBazelTargets,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcApiSurfaceCombinations(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
bp string
|
|
|
|
expectedApi string
|
|
|
|
expectedApiSurfaces string
|
|
|
|
description string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
bp: `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
stubs: {symbol_file: "a.map.txt"},
|
|
|
|
}`,
|
|
|
|
expectedApi: `"a.map.txt"`,
|
2023-01-27 00:02:00 +01:00
|
|
|
expectedApiSurfaces: `["module-libapi"]`,
|
|
|
|
description: "Library that contributes to module-libapi",
|
2022-09-09 03:38:47 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
bp: `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
llndk: {symbol_file: "a.map.txt"},
|
|
|
|
}`,
|
|
|
|
expectedApi: `"a.map.txt"`,
|
|
|
|
expectedApiSurfaces: `["vendorapi"]`,
|
|
|
|
description: "Library that contributes to vendorapi",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
bp: `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
llndk: {symbol_file: "a.map.txt"},
|
|
|
|
stubs: {symbol_file: "a.map.txt"},
|
|
|
|
}`,
|
|
|
|
expectedApi: `"a.map.txt"`,
|
|
|
|
expectedApiSurfaces: `[
|
2023-01-27 00:02:00 +01:00
|
|
|
"module-libapi",
|
2022-09-09 03:38:47 +02:00
|
|
|
"vendorapi",
|
|
|
|
]`,
|
2023-01-27 00:02:00 +01:00
|
|
|
description: "Library that contributes to module-libapi and vendorapi",
|
2022-09-09 03:38:47 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
|
|
|
expectedBazelTargets := []string{
|
|
|
|
MakeBazelTarget(
|
|
|
|
"cc_api_contribution",
|
|
|
|
"a.contribution",
|
|
|
|
AttrNameToString{
|
|
|
|
"library_name": `"a"`,
|
|
|
|
"hdrs": `[]`,
|
|
|
|
"api": testCase.expectedApi,
|
|
|
|
"api_surfaces": testCase.expectedApiSurfaces,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
}
|
|
|
|
RunApiBp2BuildTestCase(t, cc.RegisterLibraryBuildComponents, Bp2buildTestCase{
|
|
|
|
Blueprint: testCase.bp,
|
|
|
|
Description: testCase.description,
|
|
|
|
ExpectedBazelTargets: expectedBazelTargets,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// llndk struct property in Soong provides users with several options to configure the exported include dirs
|
|
|
|
// Test the generated bazel targets for the different configurations
|
|
|
|
func TestCcVendorApiHeaders(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
bp string
|
|
|
|
expectedIncludes string
|
|
|
|
expectedSystemIncludes string
|
|
|
|
description string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
bp: `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
export_system_include_dirs: ["base_system_include"],
|
|
|
|
llndk: {
|
|
|
|
symbol_file: "a.map.txt",
|
|
|
|
export_headers_as_system: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
expectedIncludes: "",
|
|
|
|
expectedSystemIncludes: `[
|
|
|
|
"base_system_include",
|
|
|
|
"include",
|
|
|
|
]`,
|
|
|
|
description: "Headers are exported as system to API surface",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
bp: `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
export_system_include_dirs: ["base_system_include"],
|
|
|
|
llndk: {
|
|
|
|
symbol_file: "a.map.txt",
|
|
|
|
override_export_include_dirs: ["llndk_include"],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
expectedIncludes: `["llndk_include"]`,
|
|
|
|
expectedSystemIncludes: `["base_system_include"]`,
|
|
|
|
description: "Non-system Headers are ovverriden before export to API surface",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
bp: `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
export_system_include_dirs: ["base_system_include"],
|
|
|
|
llndk: {
|
|
|
|
symbol_file: "a.map.txt",
|
|
|
|
override_export_include_dirs: ["llndk_include"],
|
|
|
|
export_headers_as_system: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
expectedIncludes: "", // includes are set to nil
|
|
|
|
expectedSystemIncludes: `[
|
|
|
|
"base_system_include",
|
|
|
|
"llndk_include",
|
|
|
|
]`,
|
|
|
|
description: "System Headers are extended before export to API surface",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
|
|
|
attrs := AttrNameToString{}
|
|
|
|
if testCase.expectedIncludes != "" {
|
|
|
|
attrs["export_includes"] = testCase.expectedIncludes
|
|
|
|
}
|
|
|
|
if testCase.expectedSystemIncludes != "" {
|
|
|
|
attrs["export_system_includes"] = testCase.expectedSystemIncludes
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedBazelTargets := []string{
|
|
|
|
MakeBazelTarget("cc_api_library_headers", "a.vendorapi.headers", attrs),
|
|
|
|
// Create a target for cc_api_contribution target
|
|
|
|
MakeBazelTarget("cc_api_contribution", "a.contribution", AttrNameToString{
|
|
|
|
"api": `"a.map.txt"`,
|
|
|
|
"api_surfaces": `["vendorapi"]`,
|
|
|
|
"hdrs": `[":a.vendorapi.headers"]`,
|
|
|
|
"library_name": `"a"`,
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
RunApiBp2BuildTestCase(t, cc.RegisterLibraryBuildComponents, Bp2buildTestCase{
|
|
|
|
Blueprint: testCase.bp,
|
|
|
|
ExpectedBazelTargets: expectedBazelTargets,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-12 22:19:26 +02:00
|
|
|
func TestCcLibraryStubsAcrossConfigsDuplicatesRemoved(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "stub target generation of the same lib across configs should not result in duplicates",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"bar.map.txt": "",
|
|
|
|
},
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "barlib",
|
|
|
|
stubs: { symbol_file: "bar.map.txt", versions: ["28", "29", "current"] },
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "foolib",
|
|
|
|
shared_libs: ["barlib"],
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
shared_libs: ["barlib"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
bazel_module: { bp2build_available: true },
|
2023-03-17 15:17:50 +01:00
|
|
|
apex_available: ["foo"],
|
2022-09-12 22:19:26 +02:00
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foolib", AttrNameToString{
|
|
|
|
"implementation_dynamic_deps": `select({
|
2023-03-17 04:02:32 +01:00
|
|
|
"//build/bazel/rules/apex:android-in_apex": ["@api_surfaces//module-libapi/current:barlib"],
|
2022-09-12 22:19:26 +02:00
|
|
|
"//conditions:default": [":barlib"],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
2023-03-17 15:17:50 +01:00
|
|
|
"tags": `["apex_available=foo"]`,
|
2022-09-12 22:19:26 +02:00
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-11-23 15:42:05 +01:00
|
|
|
func TestCcLibraryExcludesLibsHost(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"bar.map.txt": "",
|
|
|
|
},
|
|
|
|
Blueprint: simpleModuleDoNotConvertBp2build("cc_library", "bazlib") + `
|
|
|
|
cc_library {
|
|
|
|
name: "quxlib",
|
|
|
|
stubs: { symbol_file: "bar.map.txt", versions: ["current"] },
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "barlib",
|
|
|
|
stubs: { symbol_file: "bar.map.txt", versions: ["28", "29", "current"] },
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "foolib",
|
|
|
|
shared_libs: ["barlib", "quxlib"],
|
|
|
|
target: {
|
|
|
|
host: {
|
|
|
|
shared_libs: ["bazlib"],
|
|
|
|
exclude_shared_libs: ["barlib"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
bazel_module: { bp2build_available: true },
|
2023-03-17 15:17:50 +01:00
|
|
|
apex_available: ["foo"],
|
2022-11-23 15:42:05 +01:00
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foolib", AttrNameToString{
|
|
|
|
"implementation_dynamic_deps": `select({
|
|
|
|
"//build/bazel/platforms/os:darwin": [":bazlib"],
|
|
|
|
"//build/bazel/platforms/os:linux_bionic": [":bazlib"],
|
2022-12-21 00:29:31 +01:00
|
|
|
"//build/bazel/platforms/os:linux_glibc": [":bazlib"],
|
2022-11-23 15:42:05 +01:00
|
|
|
"//build/bazel/platforms/os:linux_musl": [":bazlib"],
|
|
|
|
"//build/bazel/platforms/os:windows": [":bazlib"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os:darwin": [":quxlib"],
|
|
|
|
"//build/bazel/platforms/os:linux_bionic": [":quxlib"],
|
2022-12-21 00:29:31 +01:00
|
|
|
"//build/bazel/platforms/os:linux_glibc": [":quxlib"],
|
2022-11-23 15:42:05 +01:00
|
|
|
"//build/bazel/platforms/os:linux_musl": [":quxlib"],
|
|
|
|
"//build/bazel/platforms/os:windows": [":quxlib"],
|
|
|
|
"//build/bazel/rules/apex:android-in_apex": [
|
2023-03-17 04:02:32 +01:00
|
|
|
"@api_surfaces//module-libapi/current:barlib",
|
|
|
|
"@api_surfaces//module-libapi/current:quxlib",
|
2022-11-23 15:42:05 +01:00
|
|
|
],
|
|
|
|
"//conditions:default": [
|
|
|
|
":barlib",
|
|
|
|
":quxlib",
|
|
|
|
],
|
|
|
|
})`,
|
2023-03-17 15:17:50 +01:00
|
|
|
"tags": `["apex_available=foo"]`,
|
2022-11-23 15:42:05 +01:00
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-02-04 21:39:00 +01:00
|
|
|
func TestCcLibraryEscapeLdflags(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcProtoPreamble + `cc_library {
|
2022-02-04 21:39:00 +01:00
|
|
|
name: "foo",
|
|
|
|
ldflags: ["-Wl,--rpath,${ORIGIN}"],
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo", AttrNameToString{
|
2022-02-04 21:39:00 +01:00
|
|
|
"linkopts": `["-Wl,--rpath,$${ORIGIN}"]`,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
2022-05-13 22:55:35 +02:00
|
|
|
|
|
|
|
func TestCcLibraryConvertLex(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
2022-05-13 22:55:35 +02:00
|
|
|
"foo.c": "",
|
|
|
|
"bar.cc": "",
|
|
|
|
"foo1.l": "",
|
|
|
|
"bar1.ll": "",
|
|
|
|
"foo2.l": "",
|
|
|
|
"bar2.ll": "",
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
Blueprint: `cc_library {
|
2022-05-13 22:55:35 +02:00
|
|
|
name: "foo_lib",
|
|
|
|
srcs: ["foo.c", "bar.cc", "foo1.l", "foo2.l", "bar1.ll", "bar2.ll"],
|
|
|
|
lex: { flags: ["--foo_flags"] },
|
|
|
|
include_build_directory: false,
|
|
|
|
bazel_module: { bp2build_available: true },
|
|
|
|
}`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: append([]string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("genlex", "foo_lib_genlex_l", AttrNameToString{
|
2022-05-13 22:55:35 +02:00
|
|
|
"srcs": `[
|
|
|
|
"foo1.l",
|
|
|
|
"foo2.l",
|
|
|
|
]`,
|
|
|
|
"lexopts": `["--foo_flags"]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("genlex", "foo_lib_genlex_ll", AttrNameToString{
|
2022-05-13 22:55:35 +02:00
|
|
|
"srcs": `[
|
|
|
|
"bar1.ll",
|
|
|
|
"bar2.ll",
|
|
|
|
]`,
|
|
|
|
"lexopts": `["--foo_flags"]`,
|
|
|
|
}),
|
|
|
|
},
|
2022-06-21 21:28:33 +02:00
|
|
|
makeCcLibraryTargets("foo_lib", AttrNameToString{
|
2022-05-13 22:55:35 +02:00
|
|
|
"srcs": `[
|
|
|
|
"bar.cc",
|
|
|
|
":foo_lib_genlex_ll",
|
|
|
|
]`,
|
|
|
|
"srcs_c": `[
|
|
|
|
"foo.c",
|
|
|
|
":foo_lib_genlex_l",
|
|
|
|
]`,
|
|
|
|
})...),
|
|
|
|
})
|
|
|
|
}
|
2022-08-09 18:50:56 +02:00
|
|
|
|
|
|
|
func TestCCLibraryRuntimeDeps(t *testing.T) {
|
|
|
|
runCcLibrarySharedTestCase(t, Bp2buildTestCase{
|
|
|
|
Blueprint: `cc_library_shared {
|
|
|
|
name: "bar",
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
runtime_libs: ["foo"],
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "bar", AttrNameToString{
|
2022-08-09 18:50:56 +02:00
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2022-08-09 18:50:56 +02:00
|
|
|
"runtime_deps": `[":foo"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-08-09 18:50:56 +02:00
|
|
|
"runtime_deps": `[":foo"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2022-08-22 23:31:04 +02:00
|
|
|
|
|
|
|
func TestCcLibraryWithInstructionSet(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `cc_library {
|
|
|
|
name: "foo",
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
instruction_set: "arm",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("foo", AttrNameToString{
|
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/arch:arm": [
|
|
|
|
"arm_isa_arm",
|
|
|
|
"-arm_isa_thumb",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
2022-08-16 19:10:31 +02:00
|
|
|
|
2022-02-24 00:39:59 +01:00
|
|
|
func TestCcLibraryEmptySuffix(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with empty suffix",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"foo.c": "",
|
|
|
|
},
|
|
|
|
Blueprint: `cc_library {
|
|
|
|
name: "foo",
|
|
|
|
suffix: "",
|
|
|
|
srcs: ["foo.c"],
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2022-02-24 00:39:59 +01:00
|
|
|
"srcs_c": `["foo.c"]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-02-24 00:39:59 +01:00
|
|
|
"srcs_c": `["foo.c"]`,
|
|
|
|
"suffix": `""`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibrarySuffix(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with suffix",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"foo.c": "",
|
|
|
|
},
|
|
|
|
Blueprint: `cc_library {
|
|
|
|
name: "foo",
|
|
|
|
suffix: "-suf",
|
|
|
|
srcs: ["foo.c"],
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2022-02-24 00:39:59 +01:00
|
|
|
"srcs_c": `["foo.c"]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-02-24 00:39:59 +01:00
|
|
|
"srcs_c": `["foo.c"]`,
|
|
|
|
"suffix": `"-suf"`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryArchVariantSuffix(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with arch-variant suffix",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"foo.c": "",
|
|
|
|
},
|
|
|
|
Blueprint: `cc_library {
|
|
|
|
name: "foo",
|
|
|
|
arch: {
|
|
|
|
arm64: { suffix: "-64" },
|
|
|
|
arm: { suffix: "-32" },
|
|
|
|
},
|
|
|
|
srcs: ["foo.c"],
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2022-02-24 00:39:59 +01:00
|
|
|
"srcs_c": `["foo.c"]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-02-24 00:39:59 +01:00
|
|
|
"srcs_c": `["foo.c"]`,
|
|
|
|
"suffix": `select({
|
|
|
|
"//build/bazel/platforms/arch:arm": "-32",
|
|
|
|
"//build/bazel/platforms/arch:arm64": "-64",
|
|
|
|
"//conditions:default": None,
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-16 19:10:31 +02:00
|
|
|
func TestCcLibraryWithAidlSrcs(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with aidl srcs",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
filegroup {
|
|
|
|
name: "A_aidl",
|
|
|
|
srcs: ["aidl/A.aidl"],
|
|
|
|
path: "aidl",
|
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
srcs: [
|
|
|
|
":A_aidl",
|
|
|
|
"B.aidl",
|
|
|
|
],
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTargetNoRestrictions("aidl_library", "A_aidl", AttrNameToString{
|
|
|
|
"srcs": `["aidl/A.aidl"]`,
|
|
|
|
"strip_import_prefix": `"aidl"`,
|
2023-03-23 16:51:49 +01:00
|
|
|
"tags": `["apex_available=//apex_available:anyapex"]`,
|
2022-08-16 19:10:31 +02:00
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("aidl_library", "foo_aidl_library", AttrNameToString{
|
2022-08-16 19:10:31 +02:00
|
|
|
"srcs": `["B.aidl"]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
|
2022-08-16 19:10:31 +02:00
|
|
|
"deps": `[
|
|
|
|
":A_aidl",
|
|
|
|
":foo_aidl_library",
|
|
|
|
]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2022-08-29 23:46:58 +02:00
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
|
|
|
|
"local_includes": `["."]`,
|
2022-08-16 19:10:31 +02:00
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-09-14 16:49:13 +02:00
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
|
|
|
|
"local_includes": `["."]`,
|
2022-08-16 19:10:31 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithNonAdjacentAidlFilegroup(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with non aidl filegroup",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Filesystem: map[string]string{
|
|
|
|
"path/to/A/Android.bp": `
|
|
|
|
filegroup {
|
2022-08-29 23:46:58 +02:00
|
|
|
name: "A_aidl",
|
|
|
|
srcs: ["aidl/A.aidl"],
|
|
|
|
path: "aidl",
|
2022-08-16 19:10:31 +02:00
|
|
|
}`,
|
|
|
|
},
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
2022-08-29 23:46:58 +02:00
|
|
|
name: "foo",
|
|
|
|
srcs: [
|
|
|
|
":A_aidl",
|
|
|
|
],
|
2022-08-16 19:10:31 +02:00
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
|
2022-08-16 19:10:31 +02:00
|
|
|
"deps": `["//path/to/A:A_aidl"]`,
|
|
|
|
}),
|
2022-08-29 23:46:58 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-09-14 16:49:13 +02:00
|
|
|
"local_includes": `["."]`,
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
|
2022-08-29 23:46:58 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithExportAidlHeaders(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with export aidl headers",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
srcs: [
|
|
|
|
"Foo.aidl",
|
|
|
|
],
|
|
|
|
aidl: {
|
|
|
|
export_aidl_headers: true,
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("aidl_library", "foo_aidl_library", AttrNameToString{
|
|
|
|
"srcs": `["Foo.aidl"]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
|
|
|
|
"deps": `[":foo_aidl_library"]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
2022-08-16 19:10:31 +02:00
|
|
|
"whole_archive_deps": `[":foo_cc_aidl_library"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
2022-08-31 20:28:19 +02:00
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
2022-08-16 19:10:31 +02:00
|
|
|
"whole_archive_deps": `[":foo_cc_aidl_library"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2022-09-16 22:17:48 +02:00
|
|
|
|
|
|
|
func TestCcLibraryWithTargetApex(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with target.apex",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
shared_libs: ["bar", "baz"],
|
|
|
|
static_libs: ["baz", "buh"],
|
|
|
|
target: {
|
|
|
|
apex: {
|
|
|
|
exclude_shared_libs: ["bar"],
|
|
|
|
exclude_static_libs: ["buh"],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"implementation_deps": `[":baz__BP2BUILD__MISSING__DEP"] + select({
|
2023-01-25 18:07:43 +01:00
|
|
|
"//build/bazel/rules/apex:in_apex": [],
|
|
|
|
"//conditions:default": [":buh__BP2BUILD__MISSING__DEP"],
|
2022-09-16 22:17:48 +02:00
|
|
|
})`,
|
|
|
|
"implementation_dynamic_deps": `[":baz__BP2BUILD__MISSING__DEP"] + select({
|
2023-01-25 18:07:43 +01:00
|
|
|
"//build/bazel/rules/apex:in_apex": [],
|
|
|
|
"//conditions:default": [":bar__BP2BUILD__MISSING__DEP"],
|
2022-09-16 22:17:48 +02:00
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"implementation_deps": `[":baz__BP2BUILD__MISSING__DEP"] + select({
|
2023-01-25 18:07:43 +01:00
|
|
|
"//build/bazel/rules/apex:in_apex": [],
|
|
|
|
"//conditions:default": [":buh__BP2BUILD__MISSING__DEP"],
|
2022-09-16 22:17:48 +02:00
|
|
|
})`,
|
|
|
|
"implementation_dynamic_deps": `[":baz__BP2BUILD__MISSING__DEP"] + select({
|
2023-01-25 18:07:43 +01:00
|
|
|
"//build/bazel/rules/apex:in_apex": [],
|
|
|
|
"//conditions:default": [":bar__BP2BUILD__MISSING__DEP"],
|
2022-09-16 22:17:48 +02:00
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithTargetApexAndExportLibHeaders(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with target.apex and export_shared|static_lib_headers",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library_static {
|
|
|
|
name: "foo",
|
|
|
|
shared_libs: ["bar", "baz"],
|
|
|
|
static_libs: ["abc"],
|
|
|
|
export_shared_lib_headers: ["baz"],
|
|
|
|
export_static_lib_headers: ["abc"],
|
|
|
|
target: {
|
|
|
|
apex: {
|
|
|
|
exclude_shared_libs: ["baz", "bar"],
|
|
|
|
exclude_static_libs: ["abc"],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
|
|
|
|
"implementation_dynamic_deps": `select({
|
2023-01-25 18:07:43 +01:00
|
|
|
"//build/bazel/rules/apex:in_apex": [],
|
|
|
|
"//conditions:default": [":bar__BP2BUILD__MISSING__DEP"],
|
2022-09-16 22:17:48 +02:00
|
|
|
})`,
|
|
|
|
"dynamic_deps": `select({
|
2023-01-25 18:07:43 +01:00
|
|
|
"//build/bazel/rules/apex:in_apex": [],
|
|
|
|
"//conditions:default": [":baz__BP2BUILD__MISSING__DEP"],
|
2022-09-16 22:17:48 +02:00
|
|
|
})`,
|
|
|
|
"deps": `select({
|
2023-01-25 18:07:43 +01:00
|
|
|
"//build/bazel/rules/apex:in_apex": [],
|
|
|
|
"//conditions:default": [":abc__BP2BUILD__MISSING__DEP"],
|
2022-09-16 22:17:48 +02:00
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2022-09-06 21:31:25 +02:00
|
|
|
|
|
|
|
func TestCcLibraryWithSyspropSrcs(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with sysprop sources",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
srcs: [
|
|
|
|
"bar.sysprop",
|
|
|
|
"baz.sysprop",
|
|
|
|
"blah.cpp",
|
|
|
|
],
|
|
|
|
min_sdk_version: "5",
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("sysprop_library", "foo_sysprop_library", AttrNameToString{
|
|
|
|
"srcs": `[
|
|
|
|
"bar.sysprop",
|
|
|
|
"baz.sysprop",
|
|
|
|
]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_sysprop_library_static", "foo_cc_sysprop_library_static", AttrNameToString{
|
|
|
|
"dep": `":foo_sysprop_library"`,
|
|
|
|
"min_sdk_version": `"5"`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"srcs": `["blah.cpp"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"min_sdk_version": `"5"`,
|
|
|
|
"whole_archive_deps": `[":foo_cc_sysprop_library_static"]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"srcs": `["blah.cpp"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"min_sdk_version": `"5"`,
|
|
|
|
"whole_archive_deps": `[":foo_cc_sysprop_library_static"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithSyspropSrcsSomeConfigs(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with sysprop sources in some configs but not others",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
host_supported: true,
|
|
|
|
srcs: [
|
|
|
|
"blah.cpp",
|
|
|
|
],
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
srcs: ["bar.sysprop"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
min_sdk_version: "5",
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTargetNoRestrictions("sysprop_library", "foo_sysprop_library", AttrNameToString{
|
|
|
|
"srcs": `select({
|
|
|
|
"//build/bazel/platforms/os:android": ["bar.sysprop"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
MakeBazelTargetNoRestrictions("cc_sysprop_library_static", "foo_cc_sysprop_library_static", AttrNameToString{
|
|
|
|
"dep": `":foo_sysprop_library"`,
|
|
|
|
"min_sdk_version": `"5"`,
|
|
|
|
}),
|
|
|
|
MakeBazelTargetNoRestrictions("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"srcs": `["blah.cpp"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"min_sdk_version": `"5"`,
|
|
|
|
"whole_archive_deps": `select({
|
|
|
|
"//build/bazel/platforms/os:android": [":foo_cc_sysprop_library_static"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
MakeBazelTargetNoRestrictions("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"srcs": `["blah.cpp"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"min_sdk_version": `"5"`,
|
|
|
|
"whole_archive_deps": `select({
|
|
|
|
"//build/bazel/platforms/os:android": [":foo_cc_sysprop_library_static"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2022-09-17 00:27:29 +02:00
|
|
|
|
2023-03-17 16:34:15 +01:00
|
|
|
func TestCcLibraryWithAidlAndLibs(t *testing.T) {
|
2022-09-17 00:27:29 +02:00
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
2023-03-17 16:34:15 +01:00
|
|
|
Description: "cc_aidl_library depends on libs from parent cc_library_static",
|
2022-09-17 00:27:29 +02:00
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library_static {
|
2023-03-17 16:34:15 +01:00
|
|
|
name: "foo",
|
|
|
|
srcs: [
|
|
|
|
"Foo.aidl",
|
|
|
|
],
|
|
|
|
static_libs: [
|
|
|
|
"bar-static",
|
|
|
|
"baz-static",
|
|
|
|
],
|
2022-09-17 00:27:29 +02:00
|
|
|
shared_libs: [
|
2023-03-17 16:34:15 +01:00
|
|
|
"bar-shared",
|
|
|
|
"baz-shared",
|
|
|
|
],
|
|
|
|
export_static_lib_headers: [
|
|
|
|
"baz-static",
|
2022-09-17 00:27:29 +02:00
|
|
|
],
|
|
|
|
export_shared_lib_headers: [
|
2023-03-17 16:34:15 +01:00
|
|
|
"baz-shared",
|
2022-09-17 00:27:29 +02:00
|
|
|
],
|
|
|
|
}` +
|
2023-03-17 16:34:15 +01:00
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "bar-static") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library_static", "baz-static") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library", "bar-shared") +
|
|
|
|
simpleModuleDoNotConvertBp2build("cc_library", "baz-shared"),
|
2022-09-17 00:27:29 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("aidl_library", "foo_aidl_library", AttrNameToString{
|
|
|
|
"srcs": `["Foo.aidl"]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
|
|
|
|
"deps": `[":foo_aidl_library"]`,
|
2023-03-17 16:34:15 +01:00
|
|
|
"implementation_deps": `[
|
|
|
|
":baz-static",
|
|
|
|
":bar-static",
|
|
|
|
]`,
|
2022-09-17 00:27:29 +02:00
|
|
|
"implementation_dynamic_deps": `[
|
2023-03-17 16:34:15 +01:00
|
|
|
":baz-shared",
|
|
|
|
":bar-shared",
|
2022-09-17 00:27:29 +02:00
|
|
|
]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
|
|
|
|
"implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
|
2023-03-17 16:34:15 +01:00
|
|
|
"deps": `[":baz-static"]`,
|
|
|
|
"implementation_deps": `[":bar-static"]`,
|
|
|
|
"dynamic_deps": `[":baz-shared"]`,
|
|
|
|
"implementation_dynamic_deps": `[":bar-shared"]`,
|
2022-09-17 00:27:29 +02:00
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2022-10-25 21:47:17 +02:00
|
|
|
|
|
|
|
func TestCcLibraryWithTidy(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library uses tidy properties",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library_static {
|
2023-03-14 19:05:28 +01:00
|
|
|
name: "foo",
|
|
|
|
srcs: ["foo.cpp"],
|
|
|
|
}
|
|
|
|
cc_library_static {
|
|
|
|
name: "foo-no-tidy",
|
|
|
|
srcs: ["foo.cpp"],
|
|
|
|
tidy: false,
|
|
|
|
}
|
|
|
|
cc_library_static {
|
|
|
|
name: "foo-tidy",
|
|
|
|
srcs: ["foo.cpp"],
|
2022-10-25 21:47:17 +02:00
|
|
|
tidy: true,
|
|
|
|
tidy_checks: ["check1", "check2"],
|
|
|
|
tidy_checks_as_errors: ["check1error", "check2error"],
|
|
|
|
tidy_disabled_srcs: ["bar.cpp"],
|
2022-11-02 19:17:15 +01:00
|
|
|
tidy_timeout_srcs: ["baz.cpp"],
|
2022-10-25 21:47:17 +02:00
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"srcs": `["foo.cpp"]`,
|
2023-03-14 19:05:28 +01:00
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_static", "foo-no-tidy", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"srcs": `["foo.cpp"]`,
|
|
|
|
"tidy": `"never"`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_static", "foo-tidy", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"srcs": `["foo.cpp"]`,
|
|
|
|
"tidy": `"local"`,
|
2022-10-25 21:47:17 +02:00
|
|
|
"tidy_checks": `[
|
|
|
|
"check1",
|
|
|
|
"check2",
|
|
|
|
]`,
|
|
|
|
"tidy_checks_as_errors": `[
|
|
|
|
"check1error",
|
|
|
|
"check2error",
|
|
|
|
]`,
|
|
|
|
"tidy_disabled_srcs": `["bar.cpp"]`,
|
2022-11-02 19:17:15 +01:00
|
|
|
"tidy_timeout_srcs": `["baz.cpp"]`,
|
2022-10-25 21:47:17 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2022-11-12 19:47:07 +01:00
|
|
|
|
2022-11-28 17:15:23 +01:00
|
|
|
func TestCcLibraryWithAfdoEnabled(t *testing.T) {
|
|
|
|
bp := `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
afdo: true,
|
|
|
|
include_build_directory: false,
|
|
|
|
}`
|
|
|
|
|
|
|
|
// TODO(b/260714900): Add test case for arch-specific afdo profile
|
|
|
|
testCases := []struct {
|
|
|
|
description string
|
|
|
|
filesystem map[string]string
|
|
|
|
expectedBazelTargets []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
description: "cc_library with afdo enabled and existing profile",
|
2022-12-09 18:03:52 +01:00
|
|
|
filesystem: map[string]string{
|
|
|
|
"vendor/google_data/pgo_profile/sampling/BUILD": "",
|
|
|
|
"vendor/google_data/pgo_profile/sampling/foo.afdo": "",
|
|
|
|
},
|
2022-11-28 17:15:23 +01:00
|
|
|
expectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"fdo_profile": `"//vendor/google_data/pgo_profile/sampling:foo"`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "cc_library with afdo enabled and existing profile in AOSP",
|
2022-12-09 18:03:52 +01:00
|
|
|
filesystem: map[string]string{
|
|
|
|
"toolchain/pgo-profiles/sampling/BUILD": "",
|
|
|
|
"toolchain/pgo-profiles/sampling/foo.afdo": "",
|
|
|
|
},
|
2022-11-28 17:15:23 +01:00
|
|
|
expectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"fdo_profile": `"//toolchain/pgo-profiles/sampling:foo"`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "cc_library with afdo enabled but profile filename doesn't match with module name",
|
2022-12-09 18:03:52 +01:00
|
|
|
filesystem: map[string]string{
|
|
|
|
"toolchain/pgo-profiles/sampling/BUILD": "",
|
|
|
|
"toolchain/pgo-profiles/sampling/bar.afdo": "",
|
|
|
|
},
|
2022-11-28 17:15:23 +01:00
|
|
|
expectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "cc_library with afdo enabled but profile doesn't exist",
|
|
|
|
expectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{}),
|
|
|
|
},
|
|
|
|
},
|
2022-12-09 18:03:52 +01:00
|
|
|
{
|
|
|
|
description: "cc_library with afdo enabled and existing profile but BUILD file doesn't exist",
|
|
|
|
filesystem: map[string]string{
|
|
|
|
"vendor/google_data/pgo_profile/sampling/foo.afdo": "",
|
|
|
|
},
|
|
|
|
expectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{}),
|
|
|
|
},
|
|
|
|
},
|
2022-11-28 17:15:23 +01:00
|
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
|
|
|
t.Run(testCase.description, func(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
ExpectedBazelTargets: testCase.expectedBazelTargets,
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Description: testCase.description,
|
|
|
|
Blueprint: binaryReplacer.Replace(bp),
|
|
|
|
Filesystem: testCase.filesystem,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-12 19:47:07 +01:00
|
|
|
func TestCcLibraryHeaderAbiChecker(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with header abi checker",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `cc_library {
|
|
|
|
name: "foo",
|
|
|
|
header_abi_checker: {
|
|
|
|
enabled: true,
|
|
|
|
symbol_file: "a.map.txt",
|
|
|
|
exclude_symbol_versions: [
|
|
|
|
"29",
|
|
|
|
"30",
|
|
|
|
],
|
|
|
|
exclude_symbol_tags: [
|
|
|
|
"tag1",
|
|
|
|
"tag2",
|
|
|
|
],
|
|
|
|
check_all_apis: true,
|
|
|
|
diff_flags: ["-allow-adding-removing-weak-symbols"],
|
|
|
|
},
|
|
|
|
include_build_directory: false,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"abi_checker_enabled": `True`,
|
|
|
|
"abi_checker_symbol_file": `"a.map.txt"`,
|
|
|
|
"abi_checker_exclude_symbol_versions": `[
|
|
|
|
"29",
|
|
|
|
"30",
|
|
|
|
]`,
|
|
|
|
"abi_checker_exclude_symbol_tags": `[
|
|
|
|
"tag1",
|
|
|
|
"tag2",
|
|
|
|
]`,
|
|
|
|
"abi_checker_check_all_apis": `True`,
|
|
|
|
"abi_checker_diff_flags": `["-allow-adding-removing-weak-symbols"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2022-11-29 13:07:45 +01:00
|
|
|
|
|
|
|
func TestCcLibraryApexAvailable(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library apex_available converted to tags",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: ["a.cpp"],
|
|
|
|
apex_available: ["com.android.foo"],
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
|
|
|
|
"tags": `["apex_available=com.android.foo"]`,
|
|
|
|
"srcs": `["a.cpp"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryApexAvailableMultiple(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library apex_available converted to multiple tags",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: ["a.cpp"],
|
|
|
|
apex_available: ["com.android.foo", "//apex_available:platform", "com.android.bar"],
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
|
|
|
|
"tags": `[
|
|
|
|
"apex_available=com.android.foo",
|
|
|
|
"apex_available=//apex_available:platform",
|
|
|
|
"apex_available=com.android.bar",
|
|
|
|
]`,
|
|
|
|
"srcs": `["a.cpp"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2022-12-28 20:18:11 +01:00
|
|
|
|
|
|
|
// Export_include_dirs and Export_system_include_dirs have "variant_prepend" tag.
|
|
|
|
// In bp2build output, variant info(select) should go before general info.
|
|
|
|
// Internal order of the property should be unchanged. (e.g. ["eid1", "eid2"])
|
|
|
|
func TestCcLibraryVariantPrependPropOrder(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library variant prepend properties order",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: soongCcLibraryPreamble + `
|
|
|
|
cc_library {
|
|
|
|
name: "a",
|
|
|
|
srcs: ["a.cpp"],
|
|
|
|
export_include_dirs: ["eid1", "eid2"],
|
|
|
|
export_system_include_dirs: ["esid1", "esid2"],
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
export_include_dirs: ["android_eid1", "android_eid2"],
|
|
|
|
export_system_include_dirs: ["android_esid1", "android_esid2"],
|
|
|
|
},
|
|
|
|
android_arm: {
|
|
|
|
export_include_dirs: ["android_arm_eid1", "android_arm_eid2"],
|
|
|
|
export_system_include_dirs: ["android_arm_esid1", "android_arm_esid2"],
|
|
|
|
},
|
|
|
|
linux: {
|
|
|
|
export_include_dirs: ["linux_eid1", "linux_eid2"],
|
|
|
|
export_system_include_dirs: ["linux_esid1", "linux_esid2"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
multilib: {
|
|
|
|
lib32: {
|
|
|
|
export_include_dirs: ["lib32_eid1", "lib32_eid2"],
|
|
|
|
export_system_include_dirs: ["lib32_esid1", "lib32_esid2"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
export_include_dirs: ["arm_eid1", "arm_eid2"],
|
|
|
|
export_system_include_dirs: ["arm_esid1", "arm_esid2"],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
|
|
|
|
"export_includes": `select({
|
|
|
|
"//build/bazel/platforms/os_arch:android_arm": [
|
|
|
|
"android_arm_eid1",
|
|
|
|
"android_arm_eid2",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os:android": [
|
|
|
|
"android_eid1",
|
|
|
|
"android_eid2",
|
|
|
|
"linux_eid1",
|
|
|
|
"linux_eid2",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/os:linux_bionic": [
|
|
|
|
"linux_eid1",
|
|
|
|
"linux_eid2",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/os:linux_glibc": [
|
|
|
|
"linux_eid1",
|
|
|
|
"linux_eid2",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/os:linux_musl": [
|
|
|
|
"linux_eid1",
|
|
|
|
"linux_eid2",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/arch:arm": [
|
|
|
|
"lib32_eid1",
|
|
|
|
"lib32_eid2",
|
|
|
|
"arm_eid1",
|
|
|
|
"arm_eid2",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/arch:x86": [
|
|
|
|
"lib32_eid1",
|
|
|
|
"lib32_eid2",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + [
|
|
|
|
"eid1",
|
|
|
|
"eid2",
|
|
|
|
]`,
|
|
|
|
"export_system_includes": `select({
|
|
|
|
"//build/bazel/platforms/os_arch:android_arm": [
|
|
|
|
"android_arm_esid1",
|
|
|
|
"android_arm_esid2",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/os:android": [
|
|
|
|
"android_esid1",
|
|
|
|
"android_esid2",
|
|
|
|
"linux_esid1",
|
|
|
|
"linux_esid2",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/os:linux_bionic": [
|
|
|
|
"linux_esid1",
|
|
|
|
"linux_esid2",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/os:linux_glibc": [
|
|
|
|
"linux_esid1",
|
|
|
|
"linux_esid2",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/os:linux_musl": [
|
|
|
|
"linux_esid1",
|
|
|
|
"linux_esid2",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + select({
|
|
|
|
"//build/bazel/platforms/arch:arm": [
|
|
|
|
"lib32_esid1",
|
|
|
|
"lib32_esid2",
|
|
|
|
"arm_esid1",
|
|
|
|
"arm_esid2",
|
|
|
|
],
|
|
|
|
"//build/bazel/platforms/arch:x86": [
|
|
|
|
"lib32_esid1",
|
|
|
|
"lib32_esid2",
|
|
|
|
],
|
|
|
|
"//conditions:default": [],
|
|
|
|
}) + [
|
|
|
|
"esid1",
|
|
|
|
"esid2",
|
|
|
|
]`,
|
|
|
|
"srcs": `["a.cpp"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"target_compatible_with": `["//build/bazel/platforms/os:android"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2022-10-28 18:48:18 +02:00
|
|
|
|
|
|
|
func TestCcLibraryWithIntegerOverflowProperty(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library has correct features when integer_overflow property is provided",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
sanitize: {
|
|
|
|
integer_overflow: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `["ubsan_integer_overflow"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `["ubsan_integer_overflow"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithMiscUndefinedProperty(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library has correct features when misc_undefined property is provided",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["undefined", "nullability"],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `[
|
|
|
|
"ubsan_undefined",
|
|
|
|
"ubsan_nullability",
|
|
|
|
]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `[
|
|
|
|
"ubsan_undefined",
|
|
|
|
"ubsan_nullability",
|
|
|
|
]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithUBSanPropertiesArchSpecific(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library has correct feature select when UBSan props are specified in arch specific blocks",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["undefined", "nullability"],
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["alignment"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
sanitize: {
|
|
|
|
integer_overflow: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `[
|
|
|
|
"ubsan_undefined",
|
|
|
|
"ubsan_nullability",
|
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/os:android": ["ubsan_alignment"],
|
|
|
|
"//build/bazel/platforms/os:linux_glibc": ["ubsan_integer_overflow"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `[
|
|
|
|
"ubsan_undefined",
|
|
|
|
"ubsan_nullability",
|
|
|
|
] + select({
|
|
|
|
"//build/bazel/platforms/os:android": ["ubsan_alignment"],
|
|
|
|
"//build/bazel/platforms/os:linux_glibc": ["ubsan_integer_overflow"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2023-02-21 21:05:26 +01:00
|
|
|
|
|
|
|
func TestCcLibraryInApexWithStubSharedLibs(t *testing.T) {
|
|
|
|
runCcLibrarySharedTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library with in apex with stub shared_libs and export_shared_lib_headers",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "barlib",
|
|
|
|
stubs: { symbol_file: "bar.map.txt", versions: ["28", "29", "current"] },
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "bazlib",
|
|
|
|
stubs: { symbol_file: "bar.map.txt", versions: ["28", "29", "current"] },
|
|
|
|
bazel_module: { bp2build_available: false },
|
|
|
|
}
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
shared_libs: ["barlib", "bazlib"],
|
|
|
|
export_shared_lib_headers: ["bazlib"],
|
|
|
|
apex_available: [
|
|
|
|
"apex_available:platform",
|
|
|
|
],
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"implementation_dynamic_deps": `select({
|
2023-03-17 04:02:32 +01:00
|
|
|
"//build/bazel/rules/apex:android-in_apex": ["@api_surfaces//module-libapi/current:barlib"],
|
2023-02-21 21:05:26 +01:00
|
|
|
"//conditions:default": [":barlib"],
|
|
|
|
})`,
|
|
|
|
"dynamic_deps": `select({
|
2023-03-17 04:02:32 +01:00
|
|
|
"//build/bazel/rules/apex:android-in_apex": ["@api_surfaces//module-libapi/current:bazlib"],
|
2023-02-21 21:05:26 +01:00
|
|
|
"//conditions:default": [":bazlib"],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"tags": `["apex_available=apex_available:platform"]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"implementation_dynamic_deps": `select({
|
2023-03-17 04:02:32 +01:00
|
|
|
"//build/bazel/rules/apex:android-in_apex": ["@api_surfaces//module-libapi/current:barlib"],
|
2023-02-21 21:05:26 +01:00
|
|
|
"//conditions:default": [":barlib"],
|
|
|
|
})`,
|
|
|
|
"dynamic_deps": `select({
|
2023-03-17 04:02:32 +01:00
|
|
|
"//build/bazel/rules/apex:android-in_apex": ["@api_surfaces//module-libapi/current:bazlib"],
|
2023-02-21 21:05:26 +01:00
|
|
|
"//conditions:default": [":bazlib"],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"tags": `["apex_available=apex_available:platform"]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2023-02-06 22:58:30 +01:00
|
|
|
|
|
|
|
func TestCcLibraryWithThinLto(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library has correct features when thin LTO is enabled",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
lto: {
|
|
|
|
thin: true,
|
|
|
|
},
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `["android_thin_lto"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `["android_thin_lto"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithLtoNever(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library has correct features when LTO is explicitly disabled",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
lto: {
|
|
|
|
never: true,
|
|
|
|
},
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `["-android_thin_lto"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `["-android_thin_lto"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithThinLtoArchSpecific(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library has correct features when LTO differs across arch and os variants",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
lto: {
|
|
|
|
thin: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
arch: {
|
|
|
|
riscv64: {
|
|
|
|
lto: {
|
|
|
|
thin: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/os_arch:android_arm": ["android_thin_lto"],
|
|
|
|
"//build/bazel/platforms/os_arch:android_arm64": ["android_thin_lto"],
|
|
|
|
"//build/bazel/platforms/os_arch:android_riscv64": ["-android_thin_lto"],
|
|
|
|
"//build/bazel/platforms/os_arch:android_x86": ["android_thin_lto"],
|
|
|
|
"//build/bazel/platforms/os_arch:android_x86_64": ["android_thin_lto"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/os_arch:android_arm": ["android_thin_lto"],
|
|
|
|
"//build/bazel/platforms/os_arch:android_arm64": ["android_thin_lto"],
|
|
|
|
"//build/bazel/platforms/os_arch:android_riscv64": ["-android_thin_lto"],
|
|
|
|
"//build/bazel/platforms/os_arch:android_x86": ["android_thin_lto"],
|
|
|
|
"//build/bazel/platforms/os_arch:android_x86_64": ["android_thin_lto"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithThinLtoDisabledDefaultEnabledVariant(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library has correct features when LTO disabled by default but enabled on a particular variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
lto: {
|
|
|
|
never: true,
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
lto: {
|
|
|
|
thin: true,
|
|
|
|
never: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/os:android": ["android_thin_lto"],
|
|
|
|
"//conditions:default": ["-android_thin_lto"],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/os:android": ["android_thin_lto"],
|
|
|
|
"//conditions:default": ["-android_thin_lto"],
|
|
|
|
})`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryWithThinLtoWholeProgramVtables(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library has correct features when thin LTO is enabled with whole_program_vtables",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
lto: {
|
|
|
|
thin: true,
|
|
|
|
},
|
|
|
|
whole_program_vtables: true,
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `[
|
|
|
|
"android_thin_lto",
|
|
|
|
"android_thin_lto_whole_program_vtables",
|
|
|
|
]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `[
|
|
|
|
"android_thin_lto",
|
|
|
|
"android_thin_lto_whole_program_vtables",
|
|
|
|
]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2023-04-14 20:25:24 +02:00
|
|
|
|
|
|
|
func TestCcLibraryHiddenVisibilityConvertedToFeature(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library changes hidden visibility flag to feature",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
cflags: ["-fvisibility=hidden"],
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `["visibility_hidden"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `["visibility_hidden"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryHiddenVisibilityConvertedToFeatureSharedSpecific(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library changes hidden visibility flag to feature when specific to shared variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
shared: {
|
|
|
|
cflags: ["-fvisibility=hidden"],
|
|
|
|
},
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `["visibility_hidden"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryHiddenVisibilityConvertedToFeatureStaticSpecific(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library changes hidden visibility flag to feature when specific to static variant",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
static: {
|
|
|
|
cflags: ["-fvisibility=hidden"],
|
|
|
|
},
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `["visibility_hidden"]`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCcLibraryHiddenVisibilityConvertedToFeatureOsSpecific(t *testing.T) {
|
|
|
|
runCcLibraryTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "cc_library changes hidden visibility flag to feature when specific to an os",
|
|
|
|
ModuleTypeUnderTest: "cc_library",
|
|
|
|
ModuleTypeUnderTestFactory: cc.LibraryFactory,
|
|
|
|
Blueprint: `
|
|
|
|
cc_library {
|
|
|
|
name: "foo",
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
cflags: ["-fvisibility=hidden"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}`,
|
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
|
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/os:android": ["visibility_hidden"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
|
|
|
|
"features": `select({
|
|
|
|
"//build/bazel/platforms/os:android": ["visibility_hidden"],
|
|
|
|
"//conditions:default": [],
|
|
|
|
})`,
|
|
|
|
"local_includes": `["."]`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|