blob: 9bb171330365ac692d4eb6ef7fdd5278d6902d2f [file] [log] [blame]
Jingwen Chen63930982021-03-24 10:04:33 -04001// Copyright 2021 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package bp2build
16
17import (
Jingwen Chen6ada5892021-09-17 11:38:09 +000018 "fmt"
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux1c92aef2021-08-23 16:10:00 +000019 "testing"
20
Vinh Tran367d89d2023-04-28 11:21:25 -040021 "android/soong/aidl_library"
Jingwen Chen63930982021-03-24 10:04:33 -040022 "android/soong/android"
23 "android/soong/cc"
Jingwen Chen63930982021-03-24 10:04:33 -040024)
25
26const (
27 // See cc/testing.go for more context
28 soongCcLibraryPreamble = `
29cc_defaults {
Liz Kammer8337ea42021-09-10 10:06:32 -040030 name: "linux_bionic_supported",
Liz Kammerbaced712022-09-16 09:01:29 -040031}
32`
33
34 soongCcVersionLibBpPath = "build/soong/cc/libbuildversion/Android.bp"
35 soongCcVersionLibBp = `
36cc_library_static {
37 name: "libbuildversion",
38 bazel_module: { bp2build_available: false },
39}
40`
Liz Kammer12615db2021-09-28 09:19:17 -040041
42 soongCcProtoLibraries = `
43cc_library {
44 name: "libprotobuf-cpp-lite",
45 bazel_module: { bp2build_available: false },
46}
47
48cc_library {
49 name: "libprotobuf-cpp-full",
50 bazel_module: { bp2build_available: false },
51}`
52
53 soongCcProtoPreamble = soongCcLibraryPreamble + soongCcProtoLibraries
Jingwen Chen63930982021-03-24 10:04:33 -040054)
55
Sam Delmerico3177a6e2022-06-21 19:28:33 +000056func runCcLibraryTestCase(t *testing.T, tc Bp2buildTestCase) {
Liz Kammere4982e82021-05-25 10:39:35 -040057 t.Helper()
Sam Delmerico3177a6e2022-06-21 19:28:33 +000058 RunBp2BuildTestCase(t, registerCcLibraryModuleTypes, tc)
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020059}
60
61func registerCcLibraryModuleTypes(ctx android.RegistrationContext) {
62 cc.RegisterCCBuildComponents(ctx)
Jingwen Chen14a8bda2021-06-02 11:10:02 +000063 ctx.RegisterModuleType("filegroup", android.FileGroupFactory)
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020064 ctx.RegisterModuleType("cc_library_static", cc.LibraryStaticFactory)
Liz Kammer2d7bbe32021-06-10 18:20:06 -040065 ctx.RegisterModuleType("cc_prebuilt_library_static", cc.PrebuiltStaticLibraryFactory)
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020066 ctx.RegisterModuleType("cc_library_headers", cc.LibraryHeaderFactory)
Vinh Tran367d89d2023-04-28 11:21:25 -040067 ctx.RegisterModuleType("aidl_library", aidl_library.AidlLibraryFactory)
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020068}
69
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020070func TestCcLibrarySimple(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +000071 runCcLibraryTestCase(t, Bp2buildTestCase{
72 Description: "cc_library - simple example",
73 ModuleTypeUnderTest: "cc_library",
74 ModuleTypeUnderTestFactory: cc.LibraryFactory,
75 Filesystem: map[string]string{
Liz Kammerbaced712022-09-16 09:01:29 -040076 soongCcVersionLibBpPath: soongCcVersionLibBp,
77 "android.cpp": "",
78 "bionic.cpp": "",
79 "darwin.cpp": "",
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020080 // Refer to cc.headerExts for the supported header extensions in Soong.
81 "header.h": "",
82 "header.hh": "",
83 "header.hpp": "",
84 "header.hxx": "",
85 "header.h++": "",
86 "header.inl": "",
87 "header.inc": "",
88 "header.ipp": "",
89 "header.h.generic": "",
90 "impl.cpp": "",
91 "linux.cpp": "",
92 "x86.cpp": "",
93 "x86_64.cpp": "",
94 "foo-dir/a.h": "",
95 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +000096 Blueprint: soongCcLibraryPreamble +
Liz Kammer78cfdaa2021-11-08 12:56:31 -050097 simpleModuleDoNotConvertBp2build("cc_library_headers", "some-headers") + `
Jingwen Chen63930982021-03-24 10:04:33 -040098cc_library {
99 name: "foo-lib",
100 srcs: ["impl.cpp"],
101 cflags: ["-Wall"],
102 header_libs: ["some-headers"],
103 export_include_dirs: ["foo-dir"],
104 ldflags: ["-Wl,--exclude-libs=bar.a"],
105 arch: {
106 x86: {
107 ldflags: ["-Wl,--exclude-libs=baz.a"],
108 srcs: ["x86.cpp"],
109 },
110 x86_64: {
111 ldflags: ["-Wl,--exclude-libs=qux.a"],
112 srcs: ["x86_64.cpp"],
113 },
114 },
115 target: {
116 android: {
117 srcs: ["android.cpp"],
118 },
119 linux_glibc: {
120 srcs: ["linux.cpp"],
121 },
122 darwin: {
123 srcs: ["darwin.cpp"],
124 },
Liz Kammer01a16e82021-07-16 16:33:47 -0400125 bionic: {
126 srcs: ["bionic.cpp"]
127 },
Jingwen Chen63930982021-03-24 10:04:33 -0400128 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400129 include_build_directory: false,
Yu Liufc603162022-03-01 15:44:08 -0800130 sdk_version: "current",
131 min_sdk_version: "29",
Yu Liua79c9462022-03-22 16:35:22 -0700132 use_version_lib: true,
Jingwen Chen63930982021-03-24 10:04:33 -0400133}
134`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000135 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500136 "copts": `["-Wall"]`,
137 "export_includes": `["foo-dir"]`,
138 "implementation_deps": `[":some-headers"]`,
139 "linkopts": `["-Wl,--exclude-libs=bar.a"] + select({
Jingwen Chened9c17d2021-04-13 07:14:55 +0000140 "//build/bazel/platforms/arch:x86": ["-Wl,--exclude-libs=baz.a"],
141 "//build/bazel/platforms/arch:x86_64": ["-Wl,--exclude-libs=qux.a"],
142 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500143 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500144 "srcs": `["impl.cpp"] + select({
Jingwen Chenb4628eb2021-04-08 14:40:57 +0000145 "//build/bazel/platforms/arch:x86": ["x86.cpp"],
146 "//build/bazel/platforms/arch:x86_64": ["x86_64.cpp"],
Jingwen Chen63930982021-03-24 10:04:33 -0400147 "//conditions:default": [],
148 }) + select({
Chris Parsons2dde0cb2021-10-01 14:45:30 -0400149 "//build/bazel/platforms/os:android": [
Chris Parsons2dde0cb2021-10-01 14:45:30 -0400150 "bionic.cpp",
Liz Kammerfdd72e62021-10-11 15:41:03 -0400151 "android.cpp",
Chris Parsons2dde0cb2021-10-01 14:45:30 -0400152 ],
Jingwen Chenb4628eb2021-04-08 14:40:57 +0000153 "//build/bazel/platforms/os:darwin": ["darwin.cpp"],
Chris Parsons2dde0cb2021-10-01 14:45:30 -0400154 "//build/bazel/platforms/os:linux_bionic": ["bionic.cpp"],
Colin Cross133782e2022-12-20 15:29:31 -0800155 "//build/bazel/platforms/os:linux_glibc": ["linux.cpp"],
Liz Kammer01a16e82021-07-16 16:33:47 -0400156 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500157 })`,
Yu Liufe978fd2023-04-24 16:37:18 -0700158 "sdk_version": `"current"`,
159 "min_sdk_version": `"29"`,
160 "use_version_lib": `True`,
161 "whole_archive_deps": `["//build/soong/cc/libbuildversion:libbuildversion"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500162 }),
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500163 })
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200164}
165
166func TestCcLibraryTrimmedLdAndroid(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000167 runCcLibraryTestCase(t, Bp2buildTestCase{
168 Description: "cc_library - trimmed example of //bionic/linker:ld-android",
169 ModuleTypeUnderTest: "cc_library",
170 ModuleTypeUnderTestFactory: cc.LibraryFactory,
171 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200172 "ld-android.cpp": "",
173 "linked_list.h": "",
174 "linker.h": "",
175 "linker_block_allocator.h": "",
176 "linker_cfi.h": "",
Jingwen Chen63930982021-03-24 10:04:33 -0400177 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000178 Blueprint: soongCcLibraryPreamble +
Liz Kammerbe46fcc2021-11-01 15:32:43 -0400179 simpleModuleDoNotConvertBp2build("cc_library_headers", "libc_headers") + `
Jingwen Chen63930982021-03-24 10:04:33 -0400180cc_library {
181 name: "fake-ld-android",
182 srcs: ["ld_android.cpp"],
183 cflags: [
184 "-Wall",
185 "-Wextra",
186 "-Wunused",
187 "-Werror",
188 ],
189 header_libs: ["libc_headers"],
190 ldflags: [
191 "-Wl,--exclude-libs=libgcc.a",
192 "-Wl,--exclude-libs=libgcc_stripped.a",
193 "-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
194 "-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
195 "-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a",
196 "-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
197 ],
198 arch: {
199 x86: {
200 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
201 },
202 x86_64: {
203 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
204 },
205 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400206 include_build_directory: false,
Jingwen Chen63930982021-03-24 10:04:33 -0400207}
208`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000209 ExpectedBazelTargets: makeCcLibraryTargets("fake-ld-android", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500210 "srcs": `["ld_android.cpp"]`,
211 "copts": `[
Jingwen Chen63930982021-03-24 10:04:33 -0400212 "-Wall",
213 "-Wextra",
214 "-Wunused",
215 "-Werror",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500216 ]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500217 "implementation_deps": `[":libc_headers"]`,
218 "linkopts": `[
Jingwen Chen63930982021-03-24 10:04:33 -0400219 "-Wl,--exclude-libs=libgcc.a",
220 "-Wl,--exclude-libs=libgcc_stripped.a",
221 "-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
222 "-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
223 "-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a",
224 "-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
225 ] + select({
Jingwen Chenb4628eb2021-04-08 14:40:57 +0000226 "//build/bazel/platforms/arch:x86": ["-Wl,--exclude-libs=libgcc_eh.a"],
227 "//build/bazel/platforms/arch:x86_64": ["-Wl,--exclude-libs=libgcc_eh.a"],
Jingwen Chen63930982021-03-24 10:04:33 -0400228 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500229 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500230 }),
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200231 })
232}
233
234func TestCcLibraryExcludeSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000235 runCcLibraryTestCase(t, Bp2buildTestCase{
236 Description: "cc_library exclude_srcs - trimmed example of //external/arm-optimized-routines:libarm-optimized-routines-math",
237 ModuleTypeUnderTest: "cc_library",
238 ModuleTypeUnderTestFactory: cc.LibraryFactory,
239 Dir: "external",
240 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200241 "external/math/cosf.c": "",
242 "external/math/erf.c": "",
243 "external/math/erf_data.c": "",
244 "external/math/erff.c": "",
245 "external/math/erff_data.c": "",
246 "external/Android.bp": `
Jingwen Chen4ecc67d2021-04-27 09:47:02 +0000247cc_library {
248 name: "fake-libarm-optimized-routines-math",
249 exclude_srcs: [
250 // Provided by:
251 // bionic/libm/upstream-freebsd/lib/msun/src/s_erf.c
252 // bionic/libm/upstream-freebsd/lib/msun/src/s_erff.c
253 "math/erf.c",
254 "math/erf_data.c",
255 "math/erff.c",
256 "math/erff_data.c",
257 ],
258 srcs: [
259 "math/*.c",
260 ],
261 // arch-specific settings
262 arch: {
263 arm64: {
264 cflags: [
265 "-DHAVE_FAST_FMA=1",
266 ],
267 },
268 },
269 bazel_module: { bp2build_available: true },
270}
271`,
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200272 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000273 Blueprint: soongCcLibraryPreamble,
274 ExpectedBazelTargets: makeCcLibraryTargets("fake-libarm-optimized-routines-math", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500275 "copts": `select({
Jingwen Chen4ecc67d2021-04-27 09:47:02 +0000276 "//build/bazel/platforms/arch:arm64": ["-DHAVE_FAST_FMA=1"],
277 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500278 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500279 "local_includes": `["."]`,
280 "srcs_c": `["math/cosf.c"]`,
281 }),
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200282 })
283}
284
285func TestCcLibrarySharedStaticProps(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000286 runCcLibraryTestCase(t, Bp2buildTestCase{
287 Description: "cc_library shared/static props",
288 ModuleTypeUnderTest: "cc_library",
289 ModuleTypeUnderTestFactory: cc.LibraryFactory,
290 Filesystem: map[string]string{
Liz Kammer8337ea42021-09-10 10:06:32 -0400291 "both.cpp": "",
292 "sharedonly.cpp": "",
293 "staticonly.cpp": "",
294 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000295 Blueprint: soongCcLibraryPreamble + `
Jingwen Chen53681ef2021-04-29 08:15:13 +0000296cc_library {
297 name: "a",
Chris Parsons08648312021-05-06 16:23:19 -0400298 srcs: ["both.cpp"],
299 cflags: ["bothflag"],
300 shared_libs: ["shared_dep_for_both"],
Liz Kammercc2c1ef2022-03-21 09:03:29 -0400301 static_libs: ["static_dep_for_both", "whole_and_static_lib_for_both"],
302 whole_static_libs: ["whole_static_lib_for_both", "whole_and_static_lib_for_both"],
Chris Parsons08648312021-05-06 16:23:19 -0400303 static: {
304 srcs: ["staticonly.cpp"],
305 cflags: ["staticflag"],
306 shared_libs: ["shared_dep_for_static"],
307 static_libs: ["static_dep_for_static"],
308 whole_static_libs: ["whole_static_lib_for_static"],
309 },
310 shared: {
311 srcs: ["sharedonly.cpp"],
312 cflags: ["sharedflag"],
313 shared_libs: ["shared_dep_for_shared"],
314 static_libs: ["static_dep_for_shared"],
315 whole_static_libs: ["whole_static_lib_for_shared"],
316 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400317 include_build_directory: false,
Jingwen Chen53681ef2021-04-29 08:15:13 +0000318}
319
Liz Kammer8337ea42021-09-10 10:06:32 -0400320cc_library_static {
321 name: "static_dep_for_shared",
322 bazel_module: { bp2build_available: false },
323}
Chris Parsons08648312021-05-06 16:23:19 -0400324
Liz Kammer8337ea42021-09-10 10:06:32 -0400325cc_library_static {
326 name: "static_dep_for_static",
327 bazel_module: { bp2build_available: false },
328}
Chris Parsons08648312021-05-06 16:23:19 -0400329
Liz Kammer8337ea42021-09-10 10:06:32 -0400330cc_library_static {
331 name: "static_dep_for_both",
332 bazel_module: { bp2build_available: false },
333}
Chris Parsons08648312021-05-06 16:23:19 -0400334
Liz Kammer8337ea42021-09-10 10:06:32 -0400335cc_library_static {
336 name: "whole_static_lib_for_shared",
337 bazel_module: { bp2build_available: false },
338}
Chris Parsons08648312021-05-06 16:23:19 -0400339
Liz Kammer8337ea42021-09-10 10:06:32 -0400340cc_library_static {
341 name: "whole_static_lib_for_static",
342 bazel_module: { bp2build_available: false },
343}
Chris Parsons08648312021-05-06 16:23:19 -0400344
Liz Kammer8337ea42021-09-10 10:06:32 -0400345cc_library_static {
346 name: "whole_static_lib_for_both",
347 bazel_module: { bp2build_available: false },
348}
Chris Parsons08648312021-05-06 16:23:19 -0400349
Liz Kammercc2c1ef2022-03-21 09:03:29 -0400350cc_library_static {
351 name: "whole_and_static_lib_for_both",
352 bazel_module: { bp2build_available: false },
353}
354
Liz Kammer8337ea42021-09-10 10:06:32 -0400355cc_library {
356 name: "shared_dep_for_shared",
357 bazel_module: { bp2build_available: false },
358}
Chris Parsons08648312021-05-06 16:23:19 -0400359
Liz Kammer8337ea42021-09-10 10:06:32 -0400360cc_library {
361 name: "shared_dep_for_static",
362 bazel_module: { bp2build_available: false },
363}
Chris Parsons08648312021-05-06 16:23:19 -0400364
Liz Kammer8337ea42021-09-10 10:06:32 -0400365cc_library {
366 name: "shared_dep_for_both",
367 bazel_module: { bp2build_available: false },
368}
Jingwen Chen53681ef2021-04-29 08:15:13 +0000369`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000370 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000371 MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500372 "copts": `[
373 "bothflag",
374 "staticflag",
375 ]`,
376 "implementation_deps": `[
377 ":static_dep_for_both",
378 ":static_dep_for_static",
379 ]`,
380 "implementation_dynamic_deps": `[
381 ":shared_dep_for_both",
382 ":shared_dep_for_static",
383 ]`,
384 "srcs": `[
385 "both.cpp",
386 "staticonly.cpp",
387 ]`,
388 "whole_archive_deps": `[
389 ":whole_static_lib_for_both",
Liz Kammercc2c1ef2022-03-21 09:03:29 -0400390 ":whole_and_static_lib_for_both",
Chris Parsons77acf2e2021-12-03 17:27:16 -0500391 ":whole_static_lib_for_static",
392 ]`}),
Alixe06d75b2022-08-31 18:28:19 +0000393 MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500394 "copts": `[
395 "bothflag",
396 "sharedflag",
397 ]`,
398 "implementation_deps": `[
399 ":static_dep_for_both",
400 ":static_dep_for_shared",
401 ]`,
402 "implementation_dynamic_deps": `[
403 ":shared_dep_for_both",
404 ":shared_dep_for_shared",
405 ]`,
406 "srcs": `[
407 "both.cpp",
408 "sharedonly.cpp",
409 ]`,
410 "whole_archive_deps": `[
411 ":whole_static_lib_for_both",
Liz Kammercc2c1ef2022-03-21 09:03:29 -0400412 ":whole_and_static_lib_for_both",
Chris Parsons77acf2e2021-12-03 17:27:16 -0500413 ":whole_static_lib_for_shared",
414 ]`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500415 }),
416 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200417 })
418}
419
Liz Kammer7a210ac2021-09-22 15:52:58 -0400420func TestCcLibraryDeps(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000421 runCcLibraryTestCase(t, Bp2buildTestCase{
422 Description: "cc_library shared/static props",
423 ModuleTypeUnderTest: "cc_library",
424 ModuleTypeUnderTestFactory: cc.LibraryFactory,
425 Filesystem: map[string]string{
Liz Kammer7a210ac2021-09-22 15:52:58 -0400426 "both.cpp": "",
427 "sharedonly.cpp": "",
428 "staticonly.cpp": "",
429 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000430 Blueprint: soongCcLibraryPreamble + `
Liz Kammer7a210ac2021-09-22 15:52:58 -0400431cc_library {
432 name: "a",
433 srcs: ["both.cpp"],
434 cflags: ["bothflag"],
435 shared_libs: ["implementation_shared_dep_for_both", "shared_dep_for_both"],
436 export_shared_lib_headers: ["shared_dep_for_both"],
437 static_libs: ["implementation_static_dep_for_both", "static_dep_for_both"],
438 export_static_lib_headers: ["static_dep_for_both", "whole_static_dep_for_both"],
439 whole_static_libs: ["not_explicitly_exported_whole_static_dep_for_both", "whole_static_dep_for_both"],
440 static: {
441 srcs: ["staticonly.cpp"],
442 cflags: ["staticflag"],
443 shared_libs: ["implementation_shared_dep_for_static", "shared_dep_for_static"],
444 export_shared_lib_headers: ["shared_dep_for_static"],
445 static_libs: ["implementation_static_dep_for_static", "static_dep_for_static"],
446 export_static_lib_headers: ["static_dep_for_static", "whole_static_dep_for_static"],
447 whole_static_libs: ["not_explicitly_exported_whole_static_dep_for_static", "whole_static_dep_for_static"],
448 },
449 shared: {
450 srcs: ["sharedonly.cpp"],
451 cflags: ["sharedflag"],
452 shared_libs: ["implementation_shared_dep_for_shared", "shared_dep_for_shared"],
453 export_shared_lib_headers: ["shared_dep_for_shared"],
454 static_libs: ["implementation_static_dep_for_shared", "static_dep_for_shared"],
455 export_static_lib_headers: ["static_dep_for_shared", "whole_static_dep_for_shared"],
456 whole_static_libs: ["not_explicitly_exported_whole_static_dep_for_shared", "whole_static_dep_for_shared"],
457 },
458 include_build_directory: false,
459}
460` + simpleModuleDoNotConvertBp2build("cc_library_static", "static_dep_for_shared") +
461 simpleModuleDoNotConvertBp2build("cc_library_static", "implementation_static_dep_for_shared") +
462 simpleModuleDoNotConvertBp2build("cc_library_static", "static_dep_for_static") +
463 simpleModuleDoNotConvertBp2build("cc_library_static", "implementation_static_dep_for_static") +
464 simpleModuleDoNotConvertBp2build("cc_library_static", "static_dep_for_both") +
465 simpleModuleDoNotConvertBp2build("cc_library_static", "implementation_static_dep_for_both") +
466 simpleModuleDoNotConvertBp2build("cc_library_static", "whole_static_dep_for_shared") +
467 simpleModuleDoNotConvertBp2build("cc_library_static", "not_explicitly_exported_whole_static_dep_for_shared") +
468 simpleModuleDoNotConvertBp2build("cc_library_static", "whole_static_dep_for_static") +
469 simpleModuleDoNotConvertBp2build("cc_library_static", "not_explicitly_exported_whole_static_dep_for_static") +
470 simpleModuleDoNotConvertBp2build("cc_library_static", "whole_static_dep_for_both") +
471 simpleModuleDoNotConvertBp2build("cc_library_static", "not_explicitly_exported_whole_static_dep_for_both") +
472 simpleModuleDoNotConvertBp2build("cc_library", "shared_dep_for_shared") +
473 simpleModuleDoNotConvertBp2build("cc_library", "implementation_shared_dep_for_shared") +
474 simpleModuleDoNotConvertBp2build("cc_library", "shared_dep_for_static") +
475 simpleModuleDoNotConvertBp2build("cc_library", "implementation_shared_dep_for_static") +
476 simpleModuleDoNotConvertBp2build("cc_library", "shared_dep_for_both") +
477 simpleModuleDoNotConvertBp2build("cc_library", "implementation_shared_dep_for_both"),
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000478 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000479 MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500480 "copts": `[
481 "bothflag",
482 "staticflag",
483 ]`,
484 "deps": `[
485 ":static_dep_for_both",
486 ":static_dep_for_static",
487 ]`,
488 "dynamic_deps": `[
489 ":shared_dep_for_both",
490 ":shared_dep_for_static",
491 ]`,
492 "implementation_deps": `[
493 ":implementation_static_dep_for_both",
494 ":implementation_static_dep_for_static",
495 ]`,
496 "implementation_dynamic_deps": `[
497 ":implementation_shared_dep_for_both",
498 ":implementation_shared_dep_for_static",
499 ]`,
500 "srcs": `[
501 "both.cpp",
502 "staticonly.cpp",
503 ]`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500504 "whole_archive_deps": `[
Liz Kammer7a210ac2021-09-22 15:52:58 -0400505 ":not_explicitly_exported_whole_static_dep_for_both",
506 ":whole_static_dep_for_both",
Chris Parsons77acf2e2021-12-03 17:27:16 -0500507 ":not_explicitly_exported_whole_static_dep_for_static",
508 ":whole_static_dep_for_static",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500509 ]`,
510 }),
Alixe06d75b2022-08-31 18:28:19 +0000511 MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500512 "copts": `[
513 "bothflag",
514 "sharedflag",
515 ]`,
516 "deps": `[
517 ":static_dep_for_both",
518 ":static_dep_for_shared",
519 ]`,
520 "dynamic_deps": `[
521 ":shared_dep_for_both",
522 ":shared_dep_for_shared",
523 ]`,
524 "implementation_deps": `[
525 ":implementation_static_dep_for_both",
526 ":implementation_static_dep_for_shared",
527 ]`,
528 "implementation_dynamic_deps": `[
529 ":implementation_shared_dep_for_both",
530 ":implementation_shared_dep_for_shared",
531 ]`,
532 "srcs": `[
533 "both.cpp",
534 "sharedonly.cpp",
535 ]`,
536 "whole_archive_deps": `[
537 ":not_explicitly_exported_whole_static_dep_for_both",
538 ":whole_static_dep_for_both",
539 ":not_explicitly_exported_whole_static_dep_for_shared",
540 ":whole_static_dep_for_shared",
541 ]`,
542 })},
543 },
544 )
Liz Kammer7a210ac2021-09-22 15:52:58 -0400545}
546
Liz Kammer2d7bbe32021-06-10 18:20:06 -0400547func TestCcLibraryWholeStaticLibsAlwaysLink(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000548 runCcLibraryTestCase(t, Bp2buildTestCase{
549 ModuleTypeUnderTest: "cc_library",
550 ModuleTypeUnderTestFactory: cc.LibraryFactory,
551 Dir: "foo/bar",
552 Filesystem: map[string]string{
Liz Kammer2d7bbe32021-06-10 18:20:06 -0400553 "foo/bar/Android.bp": `
554cc_library {
555 name: "a",
556 whole_static_libs: ["whole_static_lib_for_both"],
557 static: {
558 whole_static_libs: ["whole_static_lib_for_static"],
559 },
560 shared: {
561 whole_static_libs: ["whole_static_lib_for_shared"],
562 },
563 bazel_module: { bp2build_available: true },
Liz Kammer8337ea42021-09-10 10:06:32 -0400564 include_build_directory: false,
Liz Kammer2d7bbe32021-06-10 18:20:06 -0400565}
566
567cc_prebuilt_library_static { name: "whole_static_lib_for_shared" }
568
569cc_prebuilt_library_static { name: "whole_static_lib_for_static" }
570
571cc_prebuilt_library_static { name: "whole_static_lib_for_both" }
572`,
573 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000574 Blueprint: soongCcLibraryPreamble,
575 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000576 MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500577 "whole_archive_deps": `[
578 ":whole_static_lib_for_both_alwayslink",
579 ":whole_static_lib_for_static_alwayslink",
580 ]`,
581 }),
Alixe06d75b2022-08-31 18:28:19 +0000582 MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500583 "whole_archive_deps": `[
584 ":whole_static_lib_for_both_alwayslink",
585 ":whole_static_lib_for_shared_alwayslink",
586 ]`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500587 }),
588 },
Chris Parsons77acf2e2021-12-03 17:27:16 -0500589 },
590 )
Liz Kammer2d7bbe32021-06-10 18:20:06 -0400591}
592
Jingwen Chenbcf53042021-05-26 04:42:42 +0000593func TestCcLibrarySharedStaticPropsInArch(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000594 runCcLibraryTestCase(t, Bp2buildTestCase{
595 Description: "cc_library shared/static props in arch",
596 ModuleTypeUnderTest: "cc_library",
597 ModuleTypeUnderTestFactory: cc.LibraryFactory,
598 Dir: "foo/bar",
599 Filesystem: map[string]string{
Jingwen Chenbcf53042021-05-26 04:42:42 +0000600 "foo/bar/arm.cpp": "",
601 "foo/bar/x86.cpp": "",
602 "foo/bar/sharedonly.cpp": "",
603 "foo/bar/staticonly.cpp": "",
604 "foo/bar/Android.bp": `
605cc_library {
606 name: "a",
607 arch: {
608 arm: {
609 shared: {
610 srcs: ["arm_shared.cpp"],
611 cflags: ["-DARM_SHARED"],
612 static_libs: ["arm_static_dep_for_shared"],
613 whole_static_libs: ["arm_whole_static_dep_for_shared"],
614 shared_libs: ["arm_shared_dep_for_shared"],
615 },
616 },
617 x86: {
618 static: {
619 srcs: ["x86_static.cpp"],
620 cflags: ["-DX86_STATIC"],
621 static_libs: ["x86_dep_for_static"],
622 },
623 },
624 },
625 target: {
626 android: {
627 shared: {
628 srcs: ["android_shared.cpp"],
629 cflags: ["-DANDROID_SHARED"],
630 static_libs: ["android_dep_for_shared"],
631 },
632 },
633 android_arm: {
634 shared: {
635 cflags: ["-DANDROID_ARM_SHARED"],
636 },
637 },
638 },
639 srcs: ["both.cpp"],
640 cflags: ["bothflag"],
641 static_libs: ["static_dep_for_both"],
642 static: {
643 srcs: ["staticonly.cpp"],
644 cflags: ["staticflag"],
645 static_libs: ["static_dep_for_static"],
646 },
647 shared: {
648 srcs: ["sharedonly.cpp"],
649 cflags: ["sharedflag"],
650 static_libs: ["static_dep_for_shared"],
651 },
652 bazel_module: { bp2build_available: true },
653}
654
655cc_library_static { name: "static_dep_for_shared" }
656cc_library_static { name: "static_dep_for_static" }
657cc_library_static { name: "static_dep_for_both" }
658
659cc_library_static { name: "arm_static_dep_for_shared" }
660cc_library_static { name: "arm_whole_static_dep_for_shared" }
661cc_library_static { name: "arm_shared_dep_for_shared" }
662
663cc_library_static { name: "x86_dep_for_static" }
664
665cc_library_static { name: "android_dep_for_shared" }
666`,
667 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000668 Blueprint: soongCcLibraryPreamble,
669 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000670 MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500671 "copts": `[
672 "bothflag",
673 "staticflag",
674 ] + select({
675 "//build/bazel/platforms/arch:x86": ["-DX86_STATIC"],
676 "//conditions:default": [],
677 })`,
678 "implementation_deps": `[
679 ":static_dep_for_both",
680 ":static_dep_for_static",
681 ] + select({
682 "//build/bazel/platforms/arch:x86": [":x86_dep_for_static"],
683 "//conditions:default": [],
684 })`,
685 "local_includes": `["."]`,
686 "srcs": `[
687 "both.cpp",
688 "staticonly.cpp",
689 ] + select({
690 "//build/bazel/platforms/arch:x86": ["x86_static.cpp"],
691 "//conditions:default": [],
692 })`,
693 }),
Alixe06d75b2022-08-31 18:28:19 +0000694 MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500695 "copts": `[
696 "bothflag",
697 "sharedflag",
698 ] + select({
699 "//build/bazel/platforms/arch:arm": ["-DARM_SHARED"],
700 "//conditions:default": [],
701 }) + select({
702 "//build/bazel/platforms/os:android": ["-DANDROID_SHARED"],
703 "//conditions:default": [],
704 }) + select({
705 "//build/bazel/platforms/os_arch:android_arm": ["-DANDROID_ARM_SHARED"],
706 "//conditions:default": [],
707 })`,
708 "implementation_deps": `[
709 ":static_dep_for_both",
710 ":static_dep_for_shared",
711 ] + select({
712 "//build/bazel/platforms/arch:arm": [":arm_static_dep_for_shared"],
713 "//conditions:default": [],
714 }) + select({
715 "//build/bazel/platforms/os:android": [":android_dep_for_shared"],
716 "//conditions:default": [],
717 })`,
718 "implementation_dynamic_deps": `select({
719 "//build/bazel/platforms/arch:arm": [":arm_shared_dep_for_shared"],
720 "//conditions:default": [],
721 })`,
722 "local_includes": `["."]`,
723 "srcs": `[
724 "both.cpp",
725 "sharedonly.cpp",
726 ] + select({
727 "//build/bazel/platforms/arch:arm": ["arm_shared.cpp"],
728 "//conditions:default": [],
729 }) + select({
730 "//build/bazel/platforms/os:android": ["android_shared.cpp"],
731 "//conditions:default": [],
732 })`,
733 "whole_archive_deps": `select({
734 "//build/bazel/platforms/arch:arm": [":arm_whole_static_dep_for_shared"],
735 "//conditions:default": [],
736 })`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500737 }),
738 },
Chris Parsons77acf2e2021-12-03 17:27:16 -0500739 },
740 )
Jingwen Chenbcf53042021-05-26 04:42:42 +0000741}
742
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000743func TestCcLibrarySharedStaticPropsWithMixedSources(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000744 runCcLibraryTestCase(t, Bp2buildTestCase{
745 Description: "cc_library shared/static props with c/cpp/s mixed sources",
746 ModuleTypeUnderTest: "cc_library",
747 ModuleTypeUnderTestFactory: cc.LibraryFactory,
748 Dir: "foo/bar",
749 Filesystem: map[string]string{
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000750 "foo/bar/both_source.cpp": "",
751 "foo/bar/both_source.cc": "",
752 "foo/bar/both_source.c": "",
753 "foo/bar/both_source.s": "",
754 "foo/bar/both_source.S": "",
755 "foo/bar/shared_source.cpp": "",
756 "foo/bar/shared_source.cc": "",
757 "foo/bar/shared_source.c": "",
758 "foo/bar/shared_source.s": "",
759 "foo/bar/shared_source.S": "",
760 "foo/bar/static_source.cpp": "",
761 "foo/bar/static_source.cc": "",
762 "foo/bar/static_source.c": "",
763 "foo/bar/static_source.s": "",
764 "foo/bar/static_source.S": "",
765 "foo/bar/Android.bp": `
766cc_library {
767 name: "a",
768 srcs: [
Liz Kammerd366c902021-06-03 13:43:01 -0400769 "both_source.cpp",
770 "both_source.cc",
771 "both_source.c",
772 "both_source.s",
773 "both_source.S",
Liz Kammer57e2e7a2021-09-20 12:55:02 -0400774 ":both_filegroup",
Liz Kammerd366c902021-06-03 13:43:01 -0400775 ],
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000776 static: {
Liz Kammer8337ea42021-09-10 10:06:32 -0400777 srcs: [
778 "static_source.cpp",
779 "static_source.cc",
780 "static_source.c",
781 "static_source.s",
782 "static_source.S",
783 ":static_filegroup",
784 ],
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000785 },
786 shared: {
Liz Kammer8337ea42021-09-10 10:06:32 -0400787 srcs: [
788 "shared_source.cpp",
789 "shared_source.cc",
790 "shared_source.c",
791 "shared_source.s",
792 "shared_source.S",
793 ":shared_filegroup",
794 ],
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000795 },
796 bazel_module: { bp2build_available: true },
797}
798
799filegroup {
800 name: "both_filegroup",
801 srcs: [
802 // Not relevant, handled by filegroup macro
Liz Kammerd366c902021-06-03 13:43:01 -0400803 ],
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000804}
805
806filegroup {
807 name: "shared_filegroup",
808 srcs: [
809 // Not relevant, handled by filegroup macro
Liz Kammerd366c902021-06-03 13:43:01 -0400810 ],
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000811}
812
813filegroup {
814 name: "static_filegroup",
815 srcs: [
816 // Not relevant, handled by filegroup macro
Liz Kammerd366c902021-06-03 13:43:01 -0400817 ],
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000818}
819`,
820 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000821 Blueprint: soongCcLibraryPreamble,
822 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000823 MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500824 "local_includes": `["."]`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500825 "srcs": `[
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000826 "both_source.cpp",
Liz Kammer57e2e7a2021-09-20 12:55:02 -0400827 "both_source.cc",
828 ":both_filegroup_cpp_srcs",
Chris Parsons77acf2e2021-12-03 17:27:16 -0500829 "static_source.cpp",
830 "static_source.cc",
831 ":static_filegroup_cpp_srcs",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500832 ]`,
833 "srcs_as": `[
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000834 "both_source.s",
835 "both_source.S",
836 ":both_filegroup_as_srcs",
Chris Parsons77acf2e2021-12-03 17:27:16 -0500837 "static_source.s",
838 "static_source.S",
839 ":static_filegroup_as_srcs",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500840 ]`,
841 "srcs_c": `[
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000842 "both_source.c",
843 ":both_filegroup_c_srcs",
Chris Parsons77acf2e2021-12-03 17:27:16 -0500844 "static_source.c",
845 ":static_filegroup_c_srcs",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500846 ]`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500847 }),
Alixe06d75b2022-08-31 18:28:19 +0000848 MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500849 "local_includes": `["."]`,
850 "srcs": `[
851 "both_source.cpp",
852 "both_source.cc",
853 ":both_filegroup_cpp_srcs",
854 "shared_source.cpp",
855 "shared_source.cc",
856 ":shared_filegroup_cpp_srcs",
857 ]`,
858 "srcs_as": `[
859 "both_source.s",
860 "both_source.S",
861 ":both_filegroup_as_srcs",
862 "shared_source.s",
863 "shared_source.S",
864 ":shared_filegroup_as_srcs",
865 ]`,
866 "srcs_c": `[
867 "both_source.c",
868 ":both_filegroup_c_srcs",
869 "shared_source.c",
870 ":shared_filegroup_c_srcs",
871 ]`,
872 })}})
Jingwen Chen14a8bda2021-06-02 11:10:02 +0000873}
874
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000875func TestCcLibraryNonConfiguredVersionScriptAndDynamicList(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000876 runCcLibraryTestCase(t, Bp2buildTestCase{
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000877 Description: "cc_library non-configured version script and dynamic list",
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000878 ModuleTypeUnderTest: "cc_library",
879 ModuleTypeUnderTestFactory: cc.LibraryFactory,
880 Dir: "foo/bar",
881 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200882 "foo/bar/Android.bp": `
Lukacs T. Berki1353e592021-04-30 15:35:09 +0200883cc_library {
884 name: "a",
885 srcs: ["a.cpp"],
886 version_script: "v.map",
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000887 dynamic_list: "dynamic.list",
Lukacs T. Berki1353e592021-04-30 15:35:09 +0200888 bazel_module: { bp2build_available: true },
Liz Kammer8337ea42021-09-10 10:06:32 -0400889 include_build_directory: false,
Lukacs T. Berki1353e592021-04-30 15:35:09 +0200890}
891`,
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200892 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000893 Blueprint: soongCcLibraryPreamble,
894 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000895 "additional_linker_inputs": `[
896 "v.map",
897 "dynamic.list",
898 ]`,
899 "linkopts": `[
900 "-Wl,--version-script,$(location v.map)",
901 "-Wl,--dynamic-list,$(location dynamic.list)",
902 ]`,
Trevor Radcliffef06dd912023-05-19 14:51:41 +0000903 "srcs": `["a.cpp"]`,
904 "features": `["android_cfi_exports_map"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500905 }),
906 },
907 )
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200908}
909
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000910func TestCcLibraryConfiguredVersionScriptAndDynamicList(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000911 runCcLibraryTestCase(t, Bp2buildTestCase{
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000912 Description: "cc_library configured version script and dynamic list",
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000913 ModuleTypeUnderTest: "cc_library",
914 ModuleTypeUnderTestFactory: cc.LibraryFactory,
915 Dir: "foo/bar",
916 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200917 "foo/bar/Android.bp": `
Liz Kammer8337ea42021-09-10 10:06:32 -0400918cc_library {
919 name: "a",
920 srcs: ["a.cpp"],
921 arch: {
922 arm: {
923 version_script: "arm.map",
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000924 dynamic_list: "dynamic_arm.list",
Liz Kammer8337ea42021-09-10 10:06:32 -0400925 },
926 arm64: {
927 version_script: "arm64.map",
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000928 dynamic_list: "dynamic_arm64.list",
Liz Kammer8337ea42021-09-10 10:06:32 -0400929 },
930 },
Lukacs T. Berki56bb0832021-05-12 12:36:45 +0200931
Liz Kammer8337ea42021-09-10 10:06:32 -0400932 bazel_module: { bp2build_available: true },
933 include_build_directory: false,
934}
Liz Kammerd366c902021-06-03 13:43:01 -0400935 `,
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200936 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000937 Blueprint: soongCcLibraryPreamble,
938 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -0500939 "additional_linker_inputs": `select({
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000940 "//build/bazel/platforms/arch:arm": [
941 "arm.map",
942 "dynamic_arm.list",
943 ],
944 "//build/bazel/platforms/arch:arm64": [
945 "arm64.map",
946 "dynamic_arm64.list",
947 ],
Liz Kammerd2871182021-10-04 13:54:37 -0400948 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500949 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500950 "linkopts": `select({
Trevor Radcliffe82dd8552022-10-03 20:27:27 +0000951 "//build/bazel/platforms/arch:arm": [
952 "-Wl,--version-script,$(location arm.map)",
953 "-Wl,--dynamic-list,$(location dynamic_arm.list)",
954 ],
955 "//build/bazel/platforms/arch:arm64": [
956 "-Wl,--version-script,$(location arm64.map)",
957 "-Wl,--dynamic-list,$(location dynamic_arm64.list)",
958 ],
Liz Kammerd2871182021-10-04 13:54:37 -0400959 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500960 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500961 "srcs": `["a.cpp"]`,
Trevor Radcliffef06dd912023-05-19 14:51:41 +0000962 "features": `select({
963 "//build/bazel/platforms/arch:arm": ["android_cfi_exports_map"],
964 "//build/bazel/platforms/arch:arm64": ["android_cfi_exports_map"],
965 "//conditions:default": [],
966 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -0500967 }),
968 },
969 )
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200970}
971
Trevor Radcliffeea6a45d2022-09-20 18:58:01 +0000972func TestCcLibraryLdflagsSplitBySpaceExceptSoongAdded(t *testing.T) {
973 runCcLibraryTestCase(t, Bp2buildTestCase{
974 Description: "ldflags are split by spaces except for the ones added by soong (version script and dynamic list)",
975 ModuleTypeUnderTest: "cc_library",
976 ModuleTypeUnderTestFactory: cc.LibraryFactory,
977 Filesystem: map[string]string{
978 "version_script": "",
979 "dynamic.list": "",
980 },
981 Blueprint: `
982cc_library {
983 name: "foo",
984 ldflags: [
985 "--nospace_flag",
986 "-z spaceflag",
987 ],
988 version_script: "version_script",
989 dynamic_list: "dynamic.list",
990 include_build_directory: false,
991}
992`,
993 ExpectedBazelTargets: []string{
Trevor Radcliffef06dd912023-05-19 14:51:41 +0000994 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
995 "features": `["android_cfi_exports_map"]`,
996 }),
Trevor Radcliffeea6a45d2022-09-20 18:58:01 +0000997 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
998 "additional_linker_inputs": `[
999 "version_script",
1000 "dynamic.list",
1001 ]`,
Trevor Radcliffef06dd912023-05-19 14:51:41 +00001002 "features": `["android_cfi_exports_map"]`,
Trevor Radcliffeea6a45d2022-09-20 18:58:01 +00001003 "linkopts": `[
1004 "--nospace_flag",
1005 "-z",
1006 "spaceflag",
1007 "-Wl,--version-script,$(location version_script)",
1008 "-Wl,--dynamic-list,$(location dynamic.list)",
1009 ]`,
1010 }),
1011 },
1012 })
1013}
1014
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +02001015func TestCcLibrarySharedLibs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001016 runCcLibraryTestCase(t, Bp2buildTestCase{
1017 Description: "cc_library shared_libs",
1018 ModuleTypeUnderTest: "cc_library",
1019 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1020 Blueprint: soongCcLibraryPreamble + `
Rupert Shuttleworthc50fa8d2021-05-06 02:40:33 -04001021cc_library {
1022 name: "mylib",
Liz Kammer8337ea42021-09-10 10:06:32 -04001023 bazel_module: { bp2build_available: false },
Rupert Shuttleworthc50fa8d2021-05-06 02:40:33 -04001024}
1025
1026cc_library {
1027 name: "a",
1028 shared_libs: ["mylib",],
Liz Kammer8337ea42021-09-10 10:06:32 -04001029 include_build_directory: false,
Rupert Shuttleworthc50fa8d2021-05-06 02:40:33 -04001030}
1031`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001032 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001033 "implementation_dynamic_deps": `[":mylib"]`,
1034 }),
1035 },
1036 )
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +02001037}
1038
Liz Kammer0eae52e2021-10-06 10:32:26 -04001039func TestCcLibraryFeatures(t *testing.T) {
Chris Parsons77acf2e2021-12-03 17:27:16 -05001040 expected_targets := []string{}
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001041 expected_targets = append(expected_targets, makeCcLibraryTargets("a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001042 "features": `[
1043 "disable_pack_relocations",
1044 "-no_undefined_symbols",
1045 ]`,
Yu Liuf01a0f02022-12-07 15:45:30 -08001046 "native_coverage": `False`,
1047 "srcs": `["a.cpp"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001048 })...)
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001049 expected_targets = append(expected_targets, makeCcLibraryTargets("b", AttrNameToString{
Yu Liuf01a0f02022-12-07 15:45:30 -08001050 "features": `select({
Chris Parsons77acf2e2021-12-03 17:27:16 -05001051 "//build/bazel/platforms/arch:x86_64": [
1052 "disable_pack_relocations",
1053 "-no_undefined_symbols",
1054 ],
1055 "//conditions:default": [],
1056 })`,
Yu Liuf01a0f02022-12-07 15:45:30 -08001057 "native_coverage": `False`,
1058 "srcs": `["b.cpp"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001059 })...)
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001060 expected_targets = append(expected_targets, makeCcLibraryTargets("c", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001061 "features": `select({
1062 "//build/bazel/platforms/os:darwin": [
1063 "disable_pack_relocations",
1064 "-no_undefined_symbols",
1065 ],
1066 "//conditions:default": [],
1067 })`,
1068 "srcs": `["c.cpp"]`,
1069 })...)
1070
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001071 runCcLibraryTestCase(t, Bp2buildTestCase{
1072 Description: "cc_library pack_relocations test",
1073 ModuleTypeUnderTest: "cc_library",
1074 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1075 Blueprint: soongCcLibraryPreamble + `
Rupert Shuttleworth143be942021-05-09 23:55:51 -04001076cc_library {
1077 name: "a",
1078 srcs: ["a.cpp"],
1079 pack_relocations: false,
Liz Kammer0eae52e2021-10-06 10:32:26 -04001080 allow_undefined_symbols: true,
Liz Kammer8337ea42021-09-10 10:06:32 -04001081 include_build_directory: false,
Yu Liu8d82ac52022-05-17 15:13:28 -07001082 native_coverage: false,
Rupert Shuttleworth143be942021-05-09 23:55:51 -04001083}
1084
1085cc_library {
1086 name: "b",
1087 srcs: ["b.cpp"],
1088 arch: {
1089 x86_64: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001090 pack_relocations: false,
Liz Kammer0eae52e2021-10-06 10:32:26 -04001091 allow_undefined_symbols: true,
Liz Kammer8337ea42021-09-10 10:06:32 -04001092 },
Rupert Shuttleworth143be942021-05-09 23:55:51 -04001093 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001094 include_build_directory: false,
Yu Liu8d82ac52022-05-17 15:13:28 -07001095 native_coverage: false,
Rupert Shuttleworth143be942021-05-09 23:55:51 -04001096}
1097
1098cc_library {
1099 name: "c",
1100 srcs: ["c.cpp"],
1101 target: {
1102 darwin: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001103 pack_relocations: false,
Liz Kammer0eae52e2021-10-06 10:32:26 -04001104 allow_undefined_symbols: true,
Liz Kammer8337ea42021-09-10 10:06:32 -04001105 },
Rupert Shuttleworth143be942021-05-09 23:55:51 -04001106 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001107 include_build_directory: false,
Rupert Shuttleworth143be942021-05-09 23:55:51 -04001108}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001109 ExpectedBazelTargets: expected_targets,
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +02001110 })
1111}
1112
1113func TestCcLibrarySpacesInCopts(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001114 runCcLibraryTestCase(t, Bp2buildTestCase{
1115 Description: "cc_library spaces in copts",
1116 ModuleTypeUnderTest: "cc_library",
1117 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1118 Blueprint: soongCcLibraryPreamble + `
Jingwen Chen3950cd62021-05-12 04:33:00 +00001119cc_library {
1120 name: "a",
1121 cflags: ["-include header.h",],
Liz Kammer8337ea42021-09-10 10:06:32 -04001122 include_build_directory: false,
Jingwen Chen3950cd62021-05-12 04:33:00 +00001123}
1124`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001125 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001126 "copts": `[
Jingwen Chen3950cd62021-05-12 04:33:00 +00001127 "-include",
1128 "header.h",
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001129 ]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001130 }),
1131 },
1132 )
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +02001133}
1134
1135func TestCcLibraryCppFlagsGoesIntoCopts(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001136 runCcLibraryTestCase(t, Bp2buildTestCase{
1137 Description: "cc_library cppflags usage",
1138 ModuleTypeUnderTest: "cc_library",
1139 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1140 Blueprint: soongCcLibraryPreamble + `cc_library {
Jingwen Chen75be1ca2021-05-12 05:04:58 +00001141 name: "a",
1142 srcs: ["a.cpp"],
Liz Kammer8337ea42021-09-10 10:06:32 -04001143 cflags: ["-Wall"],
Jingwen Chen75be1ca2021-05-12 05:04:58 +00001144 cppflags: [
1145 "-fsigned-char",
1146 "-pedantic",
Liz Kammer8337ea42021-09-10 10:06:32 -04001147 ],
Jingwen Chen75be1ca2021-05-12 05:04:58 +00001148 arch: {
1149 arm64: {
1150 cppflags: ["-DARM64=1"],
Liz Kammer8337ea42021-09-10 10:06:32 -04001151 },
Liz Kammerd366c902021-06-03 13:43:01 -04001152 },
Jingwen Chen75be1ca2021-05-12 05:04:58 +00001153 target: {
1154 android: {
1155 cppflags: ["-DANDROID=1"],
Liz Kammer8337ea42021-09-10 10:06:32 -04001156 },
Liz Kammerd366c902021-06-03 13:43:01 -04001157 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001158 include_build_directory: false,
Jingwen Chen75be1ca2021-05-12 05:04:58 +00001159}
1160`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001161 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001162 "copts": `["-Wall"]`,
1163 "cppflags": `[
Chris Parsons990c4f42021-05-25 12:10:58 -04001164 "-fsigned-char",
1165 "-pedantic",
Jingwen Chen75be1ca2021-05-12 05:04:58 +00001166 ] + select({
1167 "//build/bazel/platforms/arch:arm64": ["-DARM64=1"],
1168 "//conditions:default": [],
1169 }) + select({
1170 "//build/bazel/platforms/os:android": ["-DANDROID=1"],
1171 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001172 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001173 "srcs": `["a.cpp"]`,
1174 }),
1175 },
1176 )
Jingwen Chen63930982021-03-24 10:04:33 -04001177}
Rupert Shuttleworth22cd2eb2021-05-27 02:15:54 -04001178
Liz Kammer47535c52021-06-02 16:02:22 -04001179func TestCcLibraryExcludeLibs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001180 runCcLibraryTestCase(t, Bp2buildTestCase{
1181 ModuleTypeUnderTest: "cc_library",
1182 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1183 Filesystem: map[string]string{},
1184 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammer47535c52021-06-02 16:02:22 -04001185cc_library {
1186 name: "foo_static",
1187 srcs: ["common.c"],
1188 whole_static_libs: [
1189 "arm_whole_static_lib_excludes",
1190 "malloc_not_svelte_whole_static_lib_excludes"
1191 ],
1192 static_libs: [
1193 "arm_static_lib_excludes",
1194 "malloc_not_svelte_static_lib_excludes"
1195 ],
1196 shared_libs: [
1197 "arm_shared_lib_excludes",
1198 ],
1199 arch: {
1200 arm: {
1201 exclude_shared_libs: [
1202 "arm_shared_lib_excludes",
1203 ],
1204 exclude_static_libs: [
1205 "arm_static_lib_excludes",
1206 "arm_whole_static_lib_excludes",
1207 ],
1208 },
1209 },
1210 product_variables: {
1211 malloc_not_svelte: {
1212 shared_libs: ["malloc_not_svelte_shared_lib"],
1213 whole_static_libs: ["malloc_not_svelte_whole_static_lib"],
1214 exclude_static_libs: [
1215 "malloc_not_svelte_static_lib_excludes",
1216 "malloc_not_svelte_whole_static_lib_excludes",
1217 ],
1218 },
1219 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001220 include_build_directory: false,
Liz Kammer47535c52021-06-02 16:02:22 -04001221}
1222
1223cc_library {
1224 name: "arm_whole_static_lib_excludes",
1225 bazel_module: { bp2build_available: false },
1226}
1227
1228cc_library {
1229 name: "malloc_not_svelte_whole_static_lib",
1230 bazel_module: { bp2build_available: false },
1231}
1232
1233cc_library {
1234 name: "malloc_not_svelte_whole_static_lib_excludes",
1235 bazel_module: { bp2build_available: false },
1236}
1237
1238cc_library {
1239 name: "arm_static_lib_excludes",
1240 bazel_module: { bp2build_available: false },
1241}
1242
1243cc_library {
1244 name: "malloc_not_svelte_static_lib_excludes",
1245 bazel_module: { bp2build_available: false },
1246}
1247
1248cc_library {
1249 name: "arm_shared_lib_excludes",
1250 bazel_module: { bp2build_available: false },
1251}
1252
1253cc_library {
1254 name: "malloc_not_svelte_shared_lib",
1255 bazel_module: { bp2build_available: false },
1256}
1257`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001258 ExpectedBazelTargets: makeCcLibraryTargets("foo_static", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001259 "implementation_deps": `select({
Liz Kammer47535c52021-06-02 16:02:22 -04001260 "//build/bazel/platforms/arch:arm": [],
Chris Parsons953b3562021-09-20 15:14:39 -04001261 "//conditions:default": [":arm_static_lib_excludes_bp2build_cc_library_static"],
Liz Kammer47535c52021-06-02 16:02:22 -04001262 }) + select({
Cole Faust87c0c332023-07-31 12:10:12 -07001263 "//build/bazel/product_config/config_settings:malloc_not_svelte": [],
Chris Parsons953b3562021-09-20 15:14:39 -04001264 "//conditions:default": [":malloc_not_svelte_static_lib_excludes_bp2build_cc_library_static"],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001265 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001266 "implementation_dynamic_deps": `select({
Liz Kammer7a210ac2021-09-22 15:52:58 -04001267 "//build/bazel/platforms/arch:arm": [],
1268 "//conditions:default": [":arm_shared_lib_excludes"],
1269 }) + select({
Cole Faust87c0c332023-07-31 12:10:12 -07001270 "//build/bazel/product_config/config_settings:malloc_not_svelte": [":malloc_not_svelte_shared_lib"],
Liz Kammer7a210ac2021-09-22 15:52:58 -04001271 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001272 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001273 "srcs_c": `["common.c"]`,
1274 "whole_archive_deps": `select({
Liz Kammer47535c52021-06-02 16:02:22 -04001275 "//build/bazel/platforms/arch:arm": [],
Chris Parsons953b3562021-09-20 15:14:39 -04001276 "//conditions:default": [":arm_whole_static_lib_excludes_bp2build_cc_library_static"],
Liz Kammer47535c52021-06-02 16:02:22 -04001277 }) + select({
Cole Faust87c0c332023-07-31 12:10:12 -07001278 "//build/bazel/product_config/config_settings:malloc_not_svelte": [":malloc_not_svelte_whole_static_lib_bp2build_cc_library_static"],
Chris Parsons953b3562021-09-20 15:14:39 -04001279 "//conditions:default": [":malloc_not_svelte_whole_static_lib_excludes_bp2build_cc_library_static"],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001280 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001281 }),
1282 },
1283 )
Liz Kammer47535c52021-06-02 16:02:22 -04001284}
Liz Kammerd366c902021-06-03 13:43:01 -04001285
Zi Wang0a8a1292022-08-30 06:27:01 +00001286func TestCcLibraryProductVariablesHeaderLibs(t *testing.T) {
1287 runCcLibraryTestCase(t, Bp2buildTestCase{
1288 ModuleTypeUnderTest: "cc_library",
1289 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1290 Filesystem: map[string]string{},
1291 Blueprint: soongCcLibraryStaticPreamble + `
1292cc_library {
1293 name: "foo_static",
1294 srcs: ["common.c"],
1295 product_variables: {
1296 malloc_not_svelte: {
1297 header_libs: ["malloc_not_svelte_header_lib"],
1298 },
1299 },
1300 include_build_directory: false,
1301}
1302
1303cc_library {
1304 name: "malloc_not_svelte_header_lib",
1305 bazel_module: { bp2build_available: false },
1306}
1307`,
1308 ExpectedBazelTargets: makeCcLibraryTargets("foo_static", AttrNameToString{
1309 "implementation_deps": `select({
Cole Faust87c0c332023-07-31 12:10:12 -07001310 "//build/bazel/product_config/config_settings:malloc_not_svelte": [":malloc_not_svelte_header_lib"],
Zi Wang0a8a1292022-08-30 06:27:01 +00001311 "//conditions:default": [],
1312 })`,
1313 "srcs_c": `["common.c"]`,
1314 "target_compatible_with": `["//build/bazel/platforms/os:android"]`,
1315 }),
1316 },
1317 )
1318}
1319
Liz Kammerd366c902021-06-03 13:43:01 -04001320func TestCCLibraryNoCrtTrue(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001321 runCcLibraryTestCase(t, Bp2buildTestCase{
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001322 Description: "cc_library - nocrt: true disables feature",
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001323 ModuleTypeUnderTest: "cc_library",
1324 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1325 Filesystem: map[string]string{
Jingwen Chen6ada5892021-09-17 11:38:09 +00001326 "impl.cpp": "",
1327 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001328 Blueprint: soongCcLibraryPreamble + `
Jingwen Chen6ada5892021-09-17 11:38:09 +00001329cc_library {
1330 name: "foo-lib",
1331 srcs: ["impl.cpp"],
1332 nocrt: true,
1333 include_build_directory: false,
1334}
1335`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001336 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001337 "features": `["-link_crt"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001338 "srcs": `["impl.cpp"]`,
1339 }),
1340 },
1341 )
Jingwen Chen6ada5892021-09-17 11:38:09 +00001342}
1343
1344func TestCCLibraryNoCrtFalse(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001345 runCcLibraryTestCase(t, Bp2buildTestCase{
1346 Description: "cc_library - nocrt: false - does not emit attribute",
1347 ModuleTypeUnderTest: "cc_library",
1348 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1349 Filesystem: map[string]string{
Jingwen Chen6ada5892021-09-17 11:38:09 +00001350 "impl.cpp": "",
1351 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001352 Blueprint: soongCcLibraryPreamble + `
Jingwen Chen6ada5892021-09-17 11:38:09 +00001353cc_library {
1354 name: "foo-lib",
1355 srcs: ["impl.cpp"],
1356 nocrt: false,
1357 include_build_directory: false,
1358}
1359`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001360 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001361 "srcs": `["impl.cpp"]`,
1362 }),
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001363 })
Jingwen Chen6ada5892021-09-17 11:38:09 +00001364}
1365
1366func TestCCLibraryNoCrtArchVariant(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001367 runCcLibraryTestCase(t, Bp2buildTestCase{
1368 Description: "cc_library - nocrt in select",
1369 ModuleTypeUnderTest: "cc_library",
1370 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1371 Filesystem: map[string]string{
Jingwen Chen6ada5892021-09-17 11:38:09 +00001372 "impl.cpp": "",
1373 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001374 Blueprint: soongCcLibraryPreamble + `
Jingwen Chen6ada5892021-09-17 11:38:09 +00001375cc_library {
1376 name: "foo-lib",
1377 srcs: ["impl.cpp"],
1378 arch: {
1379 arm: {
1380 nocrt: true,
1381 },
1382 x86: {
1383 nocrt: false,
1384 },
1385 },
1386 include_build_directory: false,
1387}
1388`,
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001389 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
1390 "features": `select({
1391 "//build/bazel/platforms/arch:arm": ["-link_crt"],
1392 "//conditions:default": [],
1393 })`,
1394 "srcs": `["impl.cpp"]`,
1395 }),
Jingwen Chen6ada5892021-09-17 11:38:09 +00001396 })
1397}
1398
1399func TestCCLibraryNoLibCrtTrue(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001400 runCcLibraryTestCase(t, Bp2buildTestCase{
1401 ModuleTypeUnderTest: "cc_library",
1402 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1403 Filesystem: map[string]string{
Liz Kammerd366c902021-06-03 13:43:01 -04001404 "impl.cpp": "",
1405 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001406 Blueprint: soongCcLibraryPreamble + `
Liz Kammerd366c902021-06-03 13:43:01 -04001407cc_library {
1408 name: "foo-lib",
1409 srcs: ["impl.cpp"],
1410 no_libcrt: true,
Liz Kammer8337ea42021-09-10 10:06:32 -04001411 include_build_directory: false,
Liz Kammerd366c902021-06-03 13:43:01 -04001412}
1413`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001414 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001415 "features": `["-use_libcrt"]`,
1416 "srcs": `["impl.cpp"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001417 }),
1418 })
1419}
1420
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001421func makeCcLibraryTargets(name string, attrs AttrNameToString) []string {
Chris Parsons77acf2e2021-12-03 17:27:16 -05001422 STATIC_ONLY_ATTRS := map[string]bool{}
1423 SHARED_ONLY_ATTRS := map[string]bool{
1424 "link_crt": true,
1425 "additional_linker_inputs": true,
1426 "linkopts": true,
1427 "strip": true,
Yu Liu75be7b92022-02-01 09:54:09 -08001428 "inject_bssl_hash": true,
Yu Liu56ccb1a2022-11-12 10:47:07 -08001429 "stubs_symbol_file": true,
Liz Kammerbaced712022-09-16 09:01:29 -04001430 "use_version_lib": true,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001431 }
Wei Li81852ca2022-07-27 00:22:06 -07001432
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001433 sharedAttrs := AttrNameToString{}
1434 staticAttrs := AttrNameToString{}
Chris Parsons77acf2e2021-12-03 17:27:16 -05001435 for key, val := range attrs {
1436 if _, staticOnly := STATIC_ONLY_ATTRS[key]; !staticOnly {
1437 sharedAttrs[key] = val
1438 }
1439 if _, sharedOnly := SHARED_ONLY_ATTRS[key]; !sharedOnly {
1440 staticAttrs[key] = val
1441 }
1442 }
Alixe06d75b2022-08-31 18:28:19 +00001443 sharedTarget := MakeBazelTarget("cc_library_shared", name, sharedAttrs)
1444 staticTarget := MakeBazelTarget("cc_library_static", name+"_bp2build_cc_library_static", staticAttrs)
Chris Parsons77acf2e2021-12-03 17:27:16 -05001445
1446 return []string{staticTarget, sharedTarget}
Liz Kammerd366c902021-06-03 13:43:01 -04001447}
1448
Jingwen Chen6ada5892021-09-17 11:38:09 +00001449func TestCCLibraryNoLibCrtFalse(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001450 runCcLibraryTestCase(t, Bp2buildTestCase{
1451 ModuleTypeUnderTest: "cc_library",
1452 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1453 Filesystem: map[string]string{
Liz Kammerd366c902021-06-03 13:43:01 -04001454 "impl.cpp": "",
1455 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001456 Blueprint: soongCcLibraryPreamble + `
Liz Kammerd366c902021-06-03 13:43:01 -04001457cc_library {
1458 name: "foo-lib",
1459 srcs: ["impl.cpp"],
1460 no_libcrt: false,
Liz Kammer8337ea42021-09-10 10:06:32 -04001461 include_build_directory: false,
Liz Kammerd366c902021-06-03 13:43:01 -04001462}
1463`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001464 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001465 "srcs": `["impl.cpp"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001466 }),
1467 })
Liz Kammerd366c902021-06-03 13:43:01 -04001468}
1469
Jingwen Chen6ada5892021-09-17 11:38:09 +00001470func TestCCLibraryNoLibCrtArchVariant(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001471 runCcLibraryTestCase(t, Bp2buildTestCase{
1472 ModuleTypeUnderTest: "cc_library",
1473 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1474 Filesystem: map[string]string{
Liz Kammerd366c902021-06-03 13:43:01 -04001475 "impl.cpp": "",
1476 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001477 Blueprint: soongCcLibraryPreamble + `
Liz Kammerd366c902021-06-03 13:43:01 -04001478cc_library {
1479 name: "foo-lib",
1480 srcs: ["impl.cpp"],
1481 arch: {
1482 arm: {
1483 no_libcrt: true,
1484 },
1485 x86: {
1486 no_libcrt: true,
1487 },
1488 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001489 include_build_directory: false,
Liz Kammerd366c902021-06-03 13:43:01 -04001490}
1491`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001492 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001493 "srcs": `["impl.cpp"]`,
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001494 "features": `select({
1495 "//build/bazel/platforms/arch:arm": ["-use_libcrt"],
1496 "//build/bazel/platforms/arch:x86": ["-use_libcrt"],
1497 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001498 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001499 }),
1500 })
Liz Kammerd366c902021-06-03 13:43:01 -04001501}
1502
Chris Parsons58852a02021-12-09 18:10:18 -05001503func TestCCLibraryNoLibCrtArchAndTargetVariant(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001504 runCcLibraryTestCase(t, Bp2buildTestCase{
1505 ModuleTypeUnderTest: "cc_library",
1506 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1507 Filesystem: map[string]string{
Chris Parsons58852a02021-12-09 18:10:18 -05001508 "impl.cpp": "",
1509 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001510 Blueprint: soongCcLibraryPreamble + `
Chris Parsons58852a02021-12-09 18:10:18 -05001511cc_library {
1512 name: "foo-lib",
1513 srcs: ["impl.cpp"],
1514 arch: {
1515 arm: {
1516 no_libcrt: true,
1517 },
1518 x86: {
1519 no_libcrt: true,
1520 },
1521 },
1522 target: {
1523 darwin: {
1524 no_libcrt: true,
1525 }
1526 },
1527 include_build_directory: false,
1528}
1529`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001530 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001531 "features": `select({
1532 "//build/bazel/platforms/arch:arm": ["-use_libcrt"],
1533 "//build/bazel/platforms/arch:x86": ["-use_libcrt"],
1534 "//conditions:default": [],
1535 }) + select({
1536 "//build/bazel/platforms/os:darwin": ["-use_libcrt"],
1537 "//conditions:default": [],
Chris Parsons58852a02021-12-09 18:10:18 -05001538 })`,
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001539 "srcs": `["impl.cpp"]`,
Chris Parsons58852a02021-12-09 18:10:18 -05001540 }),
1541 })
1542}
1543
1544func TestCCLibraryNoLibCrtArchAndTargetVariantConflict(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001545 runCcLibraryTestCase(t, Bp2buildTestCase{
1546 ModuleTypeUnderTest: "cc_library",
1547 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1548 Filesystem: map[string]string{
Chris Parsons58852a02021-12-09 18:10:18 -05001549 "impl.cpp": "",
1550 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001551 Blueprint: soongCcLibraryPreamble + `
Chris Parsons58852a02021-12-09 18:10:18 -05001552cc_library {
1553 name: "foo-lib",
1554 srcs: ["impl.cpp"],
1555 arch: {
1556 arm: {
1557 no_libcrt: true,
1558 },
1559 // This is expected to override the value for darwin_x86_64.
1560 x86_64: {
1561 no_libcrt: true,
1562 },
1563 },
1564 target: {
1565 darwin: {
1566 no_libcrt: false,
1567 }
1568 },
1569 include_build_directory: false,
1570}
1571`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001572 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Chris Parsons58852a02021-12-09 18:10:18 -05001573 "srcs": `["impl.cpp"]`,
Alex Márquez Pérez Muñíz Díaz Puras Thaureaux01ec55e2023-01-30 22:53:04 +00001574 "features": `select({
1575 "//build/bazel/platforms/arch:arm": ["-use_libcrt"],
1576 "//build/bazel/platforms/arch:x86_64": ["-use_libcrt"],
1577 "//conditions:default": [],
Chris Parsons58852a02021-12-09 18:10:18 -05001578 })`,
1579 }),
1580 })
1581}
1582
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001583func TestCcLibraryStrip(t *testing.T) {
Chris Parsons77acf2e2021-12-03 17:27:16 -05001584 expectedTargets := []string{}
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001585 expectedTargets = append(expectedTargets, makeCcLibraryTargets("all", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001586 "strip": `{
1587 "all": True,
1588 }`,
1589 })...)
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001590 expectedTargets = append(expectedTargets, makeCcLibraryTargets("keep_symbols", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001591 "strip": `{
1592 "keep_symbols": True,
1593 }`,
1594 })...)
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001595 expectedTargets = append(expectedTargets, makeCcLibraryTargets("keep_symbols_and_debug_frame", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001596 "strip": `{
1597 "keep_symbols_and_debug_frame": True,
1598 }`,
1599 })...)
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001600 expectedTargets = append(expectedTargets, makeCcLibraryTargets("keep_symbols_list", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001601 "strip": `{
1602 "keep_symbols_list": ["symbol"],
1603 }`,
1604 })...)
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001605 expectedTargets = append(expectedTargets, makeCcLibraryTargets("none", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001606 "strip": `{
1607 "none": True,
1608 }`,
1609 })...)
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001610 expectedTargets = append(expectedTargets, makeCcLibraryTargets("nothing", AttrNameToString{})...)
Chris Parsons77acf2e2021-12-03 17:27:16 -05001611
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001612 runCcLibraryTestCase(t, Bp2buildTestCase{
1613 Description: "cc_library strip args",
1614 ModuleTypeUnderTest: "cc_library",
1615 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1616 Blueprint: soongCcLibraryPreamble + `
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001617cc_library {
1618 name: "nothing",
Liz Kammer8337ea42021-09-10 10:06:32 -04001619 include_build_directory: false,
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001620}
1621cc_library {
1622 name: "keep_symbols",
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001623 strip: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001624 keep_symbols: true,
1625 },
1626 include_build_directory: false,
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001627}
1628cc_library {
1629 name: "keep_symbols_and_debug_frame",
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001630 strip: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001631 keep_symbols_and_debug_frame: true,
1632 },
1633 include_build_directory: false,
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001634}
1635cc_library {
1636 name: "none",
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001637 strip: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001638 none: true,
1639 },
1640 include_build_directory: false,
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001641}
1642cc_library {
1643 name: "keep_symbols_list",
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001644 strip: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001645 keep_symbols_list: ["symbol"],
1646 },
1647 include_build_directory: false,
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001648}
1649cc_library {
1650 name: "all",
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001651 strip: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001652 all: true,
1653 },
1654 include_build_directory: false,
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001655}
1656`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001657 ExpectedBazelTargets: expectedTargets,
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001658 })
1659}
1660
1661func TestCcLibraryStripWithArch(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001662 runCcLibraryTestCase(t, Bp2buildTestCase{
1663 Description: "cc_library strip args",
1664 ModuleTypeUnderTest: "cc_library",
1665 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1666 Blueprint: soongCcLibraryPreamble + `
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001667cc_library {
1668 name: "multi-arch",
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001669 target: {
1670 darwin: {
1671 strip: {
1672 keep_symbols_list: ["foo", "bar"]
1673 }
1674 },
1675 },
1676 arch: {
1677 arm: {
1678 strip: {
1679 keep_symbols_and_debug_frame: true,
1680 },
1681 },
1682 arm64: {
1683 strip: {
1684 keep_symbols: true,
1685 },
1686 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001687 },
1688 include_build_directory: false,
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001689}
1690`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001691 ExpectedBazelTargets: makeCcLibraryTargets("multi-arch", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001692 "strip": `{
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001693 "keep_symbols": select({
1694 "//build/bazel/platforms/arch:arm64": True,
1695 "//conditions:default": None,
1696 }),
1697 "keep_symbols_and_debug_frame": select({
1698 "//build/bazel/platforms/arch:arm": True,
1699 "//conditions:default": None,
1700 }),
1701 "keep_symbols_list": select({
1702 "//build/bazel/platforms/os:darwin": [
1703 "foo",
1704 "bar",
1705 ],
1706 "//conditions:default": [],
1707 }),
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001708 }`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001709 }),
1710 },
1711 )
Jingwen Chen3d383bb2021-06-09 07:18:37 +00001712}
Chris Parsons51f8c392021-08-03 21:01:05 -04001713
1714func TestCcLibrary_SystemSharedLibsRootEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001715 runCcLibraryTestCase(t, Bp2buildTestCase{
1716 Description: "cc_library system_shared_libs empty at root",
1717 ModuleTypeUnderTest: "cc_library",
1718 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1719 Blueprint: soongCcLibraryPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001720cc_library {
1721 name: "root_empty",
Liz Kammer8337ea42021-09-10 10:06:32 -04001722 system_shared_libs: [],
1723 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001724}
1725`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001726 ExpectedBazelTargets: makeCcLibraryTargets("root_empty", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001727 "system_dynamic_deps": `[]`,
1728 }),
1729 },
1730 )
Chris Parsons51f8c392021-08-03 21:01:05 -04001731}
1732
1733func TestCcLibrary_SystemSharedLibsStaticEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001734 runCcLibraryTestCase(t, Bp2buildTestCase{
1735 Description: "cc_library system_shared_libs empty for static variant",
1736 ModuleTypeUnderTest: "cc_library",
1737 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1738 Blueprint: soongCcLibraryPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001739cc_library {
1740 name: "static_empty",
1741 static: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001742 system_shared_libs: [],
1743 },
1744 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001745}
1746`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001747 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001748 MakeBazelTarget("cc_library_static", "static_empty_bp2build_cc_library_static", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001749 "system_dynamic_deps": "[]",
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001750 }),
Alixe06d75b2022-08-31 18:28:19 +00001751 MakeBazelTarget("cc_library_shared", "static_empty", AttrNameToString{}),
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001752 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001753 })
1754}
1755
1756func TestCcLibrary_SystemSharedLibsSharedEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001757 runCcLibraryTestCase(t, Bp2buildTestCase{
1758 Description: "cc_library system_shared_libs empty for shared variant",
1759 ModuleTypeUnderTest: "cc_library",
1760 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1761 Blueprint: soongCcLibraryPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001762cc_library {
1763 name: "shared_empty",
1764 shared: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001765 system_shared_libs: [],
1766 },
1767 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001768}
1769`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001770 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001771 MakeBazelTarget("cc_library_static", "shared_empty_bp2build_cc_library_static", AttrNameToString{}),
1772 MakeBazelTarget("cc_library_shared", "shared_empty", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001773 "system_dynamic_deps": "[]",
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001774 }),
1775 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001776 })
1777}
1778
1779func TestCcLibrary_SystemSharedLibsSharedBionicEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001780 runCcLibraryTestCase(t, Bp2buildTestCase{
1781 Description: "cc_library system_shared_libs empty for shared, bionic variant",
1782 ModuleTypeUnderTest: "cc_library",
1783 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1784 Blueprint: soongCcLibraryPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001785cc_library {
1786 name: "shared_empty",
1787 target: {
1788 bionic: {
1789 shared: {
1790 system_shared_libs: [],
1791 }
1792 }
Liz Kammer8337ea42021-09-10 10:06:32 -04001793 },
1794 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001795}
1796`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001797 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001798 MakeBazelTarget("cc_library_static", "shared_empty_bp2build_cc_library_static", AttrNameToString{}),
1799 MakeBazelTarget("cc_library_shared", "shared_empty", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001800 "system_dynamic_deps": "[]",
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001801 }),
1802 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001803 })
1804}
1805
1806func TestCcLibrary_SystemSharedLibsLinuxBionicEmpty(t *testing.T) {
1807 // Note that this behavior is technically incorrect (it's a simplification).
1808 // The correct behavior would be if bp2build wrote `system_dynamic_deps = []`
1809 // only for linux_bionic, but `android` had `["libc", "libdl", "libm"].
1810 // b/195791252 tracks the fix.
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001811 runCcLibraryTestCase(t, Bp2buildTestCase{
1812 Description: "cc_library system_shared_libs empty for linux_bionic variant",
1813 ModuleTypeUnderTest: "cc_library",
1814 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1815 Blueprint: soongCcLibraryPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001816cc_library {
Trevor Radcliffe0d1b4022022-12-12 22:26:34 +00001817 name: "libc_musl",
1818 bazel_module: { bp2build_available: false },
1819}
1820
1821cc_library {
Chris Parsons51f8c392021-08-03 21:01:05 -04001822 name: "target_linux_bionic_empty",
1823 target: {
1824 linux_bionic: {
1825 system_shared_libs: [],
1826 },
1827 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001828 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001829}
1830`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001831 ExpectedBazelTargets: makeCcLibraryTargets("target_linux_bionic_empty", AttrNameToString{
Trevor Radcliffe0d1b4022022-12-12 22:26:34 +00001832 "system_dynamic_deps": `select({
1833 "//build/bazel/platforms/os:linux_musl": [":libc_musl"],
1834 "//conditions:default": [],
1835 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001836 }),
1837 },
1838 )
Chris Parsons51f8c392021-08-03 21:01:05 -04001839}
1840
1841func TestCcLibrary_SystemSharedLibsBionicEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001842 runCcLibraryTestCase(t, Bp2buildTestCase{
1843 Description: "cc_library system_shared_libs empty for bionic variant",
1844 ModuleTypeUnderTest: "cc_library",
1845 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1846 Blueprint: soongCcLibraryPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001847cc_library {
Trevor Radcliffe0d1b4022022-12-12 22:26:34 +00001848 name: "libc_musl",
1849 bazel_module: { bp2build_available: false },
1850}
1851
1852cc_library {
Chris Parsons51f8c392021-08-03 21:01:05 -04001853 name: "target_bionic_empty",
1854 target: {
1855 bionic: {
1856 system_shared_libs: [],
1857 },
1858 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001859 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001860}
1861`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001862 ExpectedBazelTargets: makeCcLibraryTargets("target_bionic_empty", AttrNameToString{
Trevor Radcliffe0d1b4022022-12-12 22:26:34 +00001863 "system_dynamic_deps": `select({
1864 "//build/bazel/platforms/os:linux_musl": [":libc_musl"],
1865 "//conditions:default": [],
1866 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05001867 }),
1868 },
1869 )
Chris Parsons51f8c392021-08-03 21:01:05 -04001870}
1871
Trevor Radcliffe0d1b4022022-12-12 22:26:34 +00001872func TestCcLibrary_SystemSharedLibsMuslEmpty(t *testing.T) {
1873 runCcLibraryTestCase(t, Bp2buildTestCase{
1874 Description: "cc_library system_shared_lib empty for musl variant",
1875 ModuleTypeUnderTest: "cc_library",
1876 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1877 Blueprint: soongCcLibraryPreamble + `
1878cc_library {
1879 name: "libc_musl",
1880 bazel_module: { bp2build_available: false },
1881}
1882
1883cc_library {
1884 name: "target_musl_empty",
1885 target: {
1886 musl: {
1887 system_shared_libs: [],
1888 },
1889 },
1890 include_build_directory: false,
1891}
1892`,
1893 ExpectedBazelTargets: makeCcLibraryTargets("target_musl_empty", AttrNameToString{
1894 "system_dynamic_deps": `[]`,
1895 }),
1896 })
1897}
1898
1899func TestCcLibrary_SystemSharedLibsLinuxMuslEmpty(t *testing.T) {
1900 runCcLibraryTestCase(t, Bp2buildTestCase{
1901 Description: "cc_library system_shared_lib empty for linux_musl variant",
1902 ModuleTypeUnderTest: "cc_library",
1903 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1904 Blueprint: soongCcLibraryPreamble + `
1905cc_library {
1906 name: "libc_musl",
1907 bazel_module: { bp2build_available: false },
1908}
1909
1910cc_library {
1911 name: "target_linux_musl_empty",
1912 target: {
1913 linux_musl: {
1914 system_shared_libs: [],
1915 },
1916 },
1917 include_build_directory: false,
1918}
1919`,
1920 ExpectedBazelTargets: makeCcLibraryTargets("target_linux_musl_empty", AttrNameToString{
1921 "system_dynamic_deps": `[]`,
1922 }),
1923 })
1924}
Chris Parsons51f8c392021-08-03 21:01:05 -04001925func TestCcLibrary_SystemSharedLibsSharedAndRoot(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001926 runCcLibraryTestCase(t, Bp2buildTestCase{
1927 Description: "cc_library system_shared_libs set for shared and root",
1928 ModuleTypeUnderTest: "cc_library",
1929 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1930 Blueprint: soongCcLibraryPreamble + `
Liz Kammer8337ea42021-09-10 10:06:32 -04001931cc_library {
1932 name: "libc",
1933 bazel_module: { bp2build_available: false },
1934}
1935cc_library {
1936 name: "libm",
1937 bazel_module: { bp2build_available: false },
1938}
Chris Parsons51f8c392021-08-03 21:01:05 -04001939
1940cc_library {
1941 name: "foo",
1942 system_shared_libs: ["libc"],
1943 shared: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001944 system_shared_libs: ["libm"],
Chris Parsons51f8c392021-08-03 21:01:05 -04001945 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001946 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001947}
1948`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001949 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001950 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001951 "system_dynamic_deps": `[":libc"]`,
1952 }),
Alixe06d75b2022-08-31 18:28:19 +00001953 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05001954 "system_dynamic_deps": `[
1955 ":libc",
1956 ":libm",
1957 ]`,
1958 }),
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001959 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001960 })
1961}
Chris Parsons2dde0cb2021-10-01 14:45:30 -04001962
1963func TestCcLibraryOsSelects(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001964 runCcLibraryTestCase(t, Bp2buildTestCase{
1965 Description: "cc_library - selects for all os targets",
1966 ModuleTypeUnderTest: "cc_library",
1967 ModuleTypeUnderTestFactory: cc.LibraryFactory,
1968 Filesystem: map[string]string{},
1969 Blueprint: soongCcLibraryPreamble + `
Chris Parsons2dde0cb2021-10-01 14:45:30 -04001970cc_library {
1971 name: "foo-lib",
1972 srcs: ["base.cpp"],
1973 target: {
1974 android: {
1975 srcs: ["android.cpp"],
1976 },
1977 linux: {
1978 srcs: ["linux.cpp"],
1979 },
1980 linux_glibc: {
1981 srcs: ["linux_glibc.cpp"],
1982 },
1983 darwin: {
1984 srcs: ["darwin.cpp"],
1985 },
1986 bionic: {
1987 srcs: ["bionic.cpp"],
1988 },
1989 linux_musl: {
1990 srcs: ["linux_musl.cpp"],
1991 },
1992 windows: {
1993 srcs: ["windows.cpp"],
1994 },
1995 },
1996 include_build_directory: false,
1997}
1998`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001999 ExpectedBazelTargets: makeCcLibraryTargets("foo-lib", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05002000 "srcs": `["base.cpp"] + select({
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002001 "//build/bazel/platforms/os:android": [
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002002 "linux.cpp",
Liz Kammer9bad9d62021-10-11 15:40:35 -04002003 "bionic.cpp",
Liz Kammerfdd72e62021-10-11 15:41:03 -04002004 "android.cpp",
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002005 ],
2006 "//build/bazel/platforms/os:darwin": ["darwin.cpp"],
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002007 "//build/bazel/platforms/os:linux_bionic": [
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002008 "linux.cpp",
Liz Kammer9bad9d62021-10-11 15:40:35 -04002009 "bionic.cpp",
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002010 ],
Colin Cross133782e2022-12-20 15:29:31 -08002011 "//build/bazel/platforms/os:linux_glibc": [
2012 "linux.cpp",
2013 "linux_glibc.cpp",
2014 ],
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002015 "//build/bazel/platforms/os:linux_musl": [
Liz Kammer9bad9d62021-10-11 15:40:35 -04002016 "linux.cpp",
Liz Kammerfdd72e62021-10-11 15:41:03 -04002017 "linux_musl.cpp",
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002018 ],
2019 "//build/bazel/platforms/os:windows": ["windows.cpp"],
2020 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05002021 })`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05002022 }),
2023 },
2024 )
Jingwen Chen97b85312021-10-08 10:41:31 +00002025}
2026
Yu Liu75be7b92022-02-01 09:54:09 -08002027func TestLibcryptoHashInjection(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002028 runCcLibraryTestCase(t, Bp2buildTestCase{
2029 Description: "cc_library - libcrypto hash injection",
2030 ModuleTypeUnderTest: "cc_library",
2031 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2032 Filesystem: map[string]string{},
2033 Blueprint: soongCcLibraryPreamble + `
Yu Liu75be7b92022-02-01 09:54:09 -08002034cc_library {
2035 name: "libcrypto",
2036 target: {
2037 android: {
2038 inject_bssl_hash: true,
2039 },
2040 },
2041 include_build_directory: false,
2042}
2043`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002044 ExpectedBazelTargets: makeCcLibraryTargets("libcrypto", AttrNameToString{
Yu Liu75be7b92022-02-01 09:54:09 -08002045 "inject_bssl_hash": `select({
2046 "//build/bazel/platforms/os:android": True,
2047 "//conditions:default": None,
2048 })`,
2049 }),
2050 },
2051 )
2052}
2053
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002054func TestCcLibraryCppStdWithGnuExtensions_ConvertsToFeatureAttr(t *testing.T) {
Jingwen Chen97b85312021-10-08 10:41:31 +00002055 type testCase struct {
2056 cpp_std string
Chris Parsons79bd2b72021-11-29 17:52:41 -05002057 c_std string
Jingwen Chen97b85312021-10-08 10:41:31 +00002058 gnu_extensions string
2059 bazel_cpp_std string
Chris Parsons79bd2b72021-11-29 17:52:41 -05002060 bazel_c_std string
Jingwen Chen97b85312021-10-08 10:41:31 +00002061 }
2062
2063 testCases := []testCase{
2064 // Existing usages of cpp_std in AOSP are:
2065 // experimental, c++11, c++17, c++2a, c++98, gnu++11, gnu++17
2066 //
2067 // not set, only emit if gnu_extensions is disabled. the default (gnu+17
2068 // is set in the toolchain.)
2069 {cpp_std: "", gnu_extensions: "", bazel_cpp_std: ""},
Liz Kammera5a29de2022-05-25 23:19:37 -04002070 {cpp_std: "", gnu_extensions: "false", bazel_cpp_std: "cpp_std_default_no_gnu", bazel_c_std: "c_std_default_no_gnu"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002071 {cpp_std: "", gnu_extensions: "true", bazel_cpp_std: ""},
2072 // experimental defaults to gnu++2a
Liz Kammera5a29de2022-05-25 23:19:37 -04002073 {cpp_std: "experimental", gnu_extensions: "", bazel_cpp_std: "cpp_std_experimental"},
2074 {cpp_std: "experimental", gnu_extensions: "false", bazel_cpp_std: "cpp_std_experimental_no_gnu", bazel_c_std: "c_std_default_no_gnu"},
2075 {cpp_std: "experimental", gnu_extensions: "true", bazel_cpp_std: "cpp_std_experimental"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002076 // Explicitly setting a c++ std does not use replace gnu++ std even if
2077 // gnu_extensions is true.
2078 // "c++11",
2079 {cpp_std: "c++11", gnu_extensions: "", bazel_cpp_std: "c++11"},
Liz Kammera5a29de2022-05-25 23:19:37 -04002080 {cpp_std: "c++11", gnu_extensions: "false", bazel_cpp_std: "c++11", bazel_c_std: "c_std_default_no_gnu"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002081 {cpp_std: "c++11", gnu_extensions: "true", bazel_cpp_std: "c++11"},
2082 // "c++17",
2083 {cpp_std: "c++17", gnu_extensions: "", bazel_cpp_std: "c++17"},
Liz Kammera5a29de2022-05-25 23:19:37 -04002084 {cpp_std: "c++17", gnu_extensions: "false", bazel_cpp_std: "c++17", bazel_c_std: "c_std_default_no_gnu"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002085 {cpp_std: "c++17", gnu_extensions: "true", bazel_cpp_std: "c++17"},
2086 // "c++2a",
2087 {cpp_std: "c++2a", gnu_extensions: "", bazel_cpp_std: "c++2a"},
Liz Kammera5a29de2022-05-25 23:19:37 -04002088 {cpp_std: "c++2a", gnu_extensions: "false", bazel_cpp_std: "c++2a", bazel_c_std: "c_std_default_no_gnu"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002089 {cpp_std: "c++2a", gnu_extensions: "true", bazel_cpp_std: "c++2a"},
2090 // "c++98",
2091 {cpp_std: "c++98", gnu_extensions: "", bazel_cpp_std: "c++98"},
Liz Kammera5a29de2022-05-25 23:19:37 -04002092 {cpp_std: "c++98", gnu_extensions: "false", bazel_cpp_std: "c++98", bazel_c_std: "c_std_default_no_gnu"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002093 {cpp_std: "c++98", gnu_extensions: "true", bazel_cpp_std: "c++98"},
2094 // gnu++ is replaced with c++ if gnu_extensions is explicitly false.
2095 // "gnu++11",
2096 {cpp_std: "gnu++11", gnu_extensions: "", bazel_cpp_std: "gnu++11"},
Liz Kammera5a29de2022-05-25 23:19:37 -04002097 {cpp_std: "gnu++11", gnu_extensions: "false", bazel_cpp_std: "c++11", bazel_c_std: "c_std_default_no_gnu"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002098 {cpp_std: "gnu++11", gnu_extensions: "true", bazel_cpp_std: "gnu++11"},
2099 // "gnu++17",
2100 {cpp_std: "gnu++17", gnu_extensions: "", bazel_cpp_std: "gnu++17"},
Liz Kammera5a29de2022-05-25 23:19:37 -04002101 {cpp_std: "gnu++17", gnu_extensions: "false", bazel_cpp_std: "c++17", bazel_c_std: "c_std_default_no_gnu"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002102 {cpp_std: "gnu++17", gnu_extensions: "true", bazel_cpp_std: "gnu++17"},
Chris Parsons79bd2b72021-11-29 17:52:41 -05002103
2104 // some c_std test cases
Liz Kammera5a29de2022-05-25 23:19:37 -04002105 {c_std: "experimental", gnu_extensions: "", bazel_c_std: "c_std_experimental"},
2106 {c_std: "experimental", gnu_extensions: "false", bazel_cpp_std: "cpp_std_default_no_gnu", bazel_c_std: "c_std_experimental_no_gnu"},
2107 {c_std: "experimental", gnu_extensions: "true", bazel_c_std: "c_std_experimental"},
Chris Parsons79bd2b72021-11-29 17:52:41 -05002108 {c_std: "gnu11", cpp_std: "gnu++17", gnu_extensions: "", bazel_cpp_std: "gnu++17", bazel_c_std: "gnu11"},
2109 {c_std: "gnu11", cpp_std: "gnu++17", gnu_extensions: "false", bazel_cpp_std: "c++17", bazel_c_std: "c11"},
2110 {c_std: "gnu11", cpp_std: "gnu++17", gnu_extensions: "true", bazel_cpp_std: "gnu++17", bazel_c_std: "gnu11"},
Jingwen Chen97b85312021-10-08 10:41:31 +00002111 }
Chris Parsons79bd2b72021-11-29 17:52:41 -05002112 for i, tc := range testCases {
Liz Kammera5a29de2022-05-25 23:19:37 -04002113 name := fmt.Sprintf("cpp std: %q, c std: %q, gnu_extensions: %q", tc.cpp_std, tc.c_std, tc.gnu_extensions)
2114 t.Run(name, func(t *testing.T) {
2115 name_prefix := fmt.Sprintf("a_%v", i)
2116 cppStdProp := ""
2117 if tc.cpp_std != "" {
2118 cppStdProp = fmt.Sprintf(" cpp_std: \"%s\",", tc.cpp_std)
2119 }
2120 cStdProp := ""
2121 if tc.c_std != "" {
2122 cStdProp = fmt.Sprintf(" c_std: \"%s\",", tc.c_std)
2123 }
2124 gnuExtensionsProp := ""
2125 if tc.gnu_extensions != "" {
2126 gnuExtensionsProp = fmt.Sprintf(" gnu_extensions: %s,", tc.gnu_extensions)
2127 }
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002128 attrs := AttrNameToString{}
Liz Kammera5a29de2022-05-25 23:19:37 -04002129 if tc.bazel_cpp_std != "" {
2130 attrs["cpp_std"] = fmt.Sprintf(`"%s"`, tc.bazel_cpp_std)
2131 }
2132 if tc.bazel_c_std != "" {
2133 attrs["c_std"] = fmt.Sprintf(`"%s"`, tc.bazel_c_std)
2134 }
Jingwen Chen97b85312021-10-08 10:41:31 +00002135
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002136 runCcLibraryTestCase(t, Bp2buildTestCase{
2137 Description: fmt.Sprintf(
Liz Kammera5a29de2022-05-25 23:19:37 -04002138 "cc_library with cpp_std: %s and gnu_extensions: %s", tc.cpp_std, tc.gnu_extensions),
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002139 ModuleTypeUnderTest: "cc_library",
2140 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2141 Blueprint: soongCcLibraryPreamble + fmt.Sprintf(`
Jingwen Chen97b85312021-10-08 10:41:31 +00002142cc_library {
Chris Parsons79bd2b72021-11-29 17:52:41 -05002143 name: "%s_full",
Jingwen Chen97b85312021-10-08 10:41:31 +00002144%s // cpp_std: *string
Chris Parsons79bd2b72021-11-29 17:52:41 -05002145%s // c_std: *string
Jingwen Chen97b85312021-10-08 10:41:31 +00002146%s // gnu_extensions: *bool
2147 include_build_directory: false,
2148}
Chris Parsons79bd2b72021-11-29 17:52:41 -05002149`, name_prefix, cppStdProp, cStdProp, gnuExtensionsProp),
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002150 ExpectedBazelTargets: makeCcLibraryTargets(name_prefix+"_full", attrs),
Liz Kammera5a29de2022-05-25 23:19:37 -04002151 })
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002152
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002153 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
2154 Description: fmt.Sprintf(
Liz Kammera5a29de2022-05-25 23:19:37 -04002155 "cc_library_static with cpp_std: %s and gnu_extensions: %s", tc.cpp_std, tc.gnu_extensions),
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002156 ModuleTypeUnderTest: "cc_library_static",
2157 ModuleTypeUnderTestFactory: cc.LibraryStaticFactory,
2158 Blueprint: soongCcLibraryPreamble + fmt.Sprintf(`
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002159cc_library_static {
Chris Parsons79bd2b72021-11-29 17:52:41 -05002160 name: "%s_static",
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002161%s // cpp_std: *string
Chris Parsons79bd2b72021-11-29 17:52:41 -05002162%s // c_std: *string
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002163%s // gnu_extensions: *bool
2164 include_build_directory: false,
2165}
Chris Parsons79bd2b72021-11-29 17:52:41 -05002166`, name_prefix, cppStdProp, cStdProp, gnuExtensionsProp),
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002167 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002168 MakeBazelTarget("cc_library_static", name_prefix+"_static", attrs),
Liz Kammera5a29de2022-05-25 23:19:37 -04002169 },
2170 })
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002171
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002172 runCcLibrarySharedTestCase(t, Bp2buildTestCase{
2173 Description: fmt.Sprintf(
Liz Kammera5a29de2022-05-25 23:19:37 -04002174 "cc_library_shared with cpp_std: %s and gnu_extensions: %s", tc.cpp_std, tc.gnu_extensions),
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002175 ModuleTypeUnderTest: "cc_library_shared",
2176 ModuleTypeUnderTestFactory: cc.LibrarySharedFactory,
2177 Blueprint: soongCcLibraryPreamble + fmt.Sprintf(`
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002178cc_library_shared {
Chris Parsons79bd2b72021-11-29 17:52:41 -05002179 name: "%s_shared",
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002180%s // cpp_std: *string
Chris Parsons79bd2b72021-11-29 17:52:41 -05002181%s // c_std: *string
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002182%s // gnu_extensions: *bool
2183 include_build_directory: false,
2184}
Chris Parsons79bd2b72021-11-29 17:52:41 -05002185`, name_prefix, cppStdProp, cStdProp, gnuExtensionsProp),
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002186 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002187 MakeBazelTarget("cc_library_shared", name_prefix+"_shared", attrs),
Liz Kammera5a29de2022-05-25 23:19:37 -04002188 },
2189 })
Jingwen Chen5b11ab12021-10-11 17:44:33 +00002190 })
Jingwen Chen97b85312021-10-08 10:41:31 +00002191 }
Chris Parsons2dde0cb2021-10-01 14:45:30 -04002192}
Liz Kammer12615db2021-09-28 09:19:17 -04002193
2194func TestCcLibraryProtoSimple(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002195 runCcLibraryTestCase(t, Bp2buildTestCase{
2196 ModuleTypeUnderTest: "cc_library",
2197 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2198 Blueprint: soongCcProtoPreamble + `cc_library {
Liz Kammer12615db2021-09-28 09:19:17 -04002199 name: "foo",
2200 srcs: ["foo.proto"],
2201 include_build_directory: false,
2202}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002203 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002204 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer7756c8f2022-02-14 20:49:15 -05002205 "srcs": `["foo.proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002206 }), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002207 "deps": `[":foo_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002208 }), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002209 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05002210 "deps": `[":libprotobuf-cpp-lite"]`,
Alixe06d75b2022-08-31 18:28:19 +00002211 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Liz Kammer84b0ecb2022-09-14 10:49:13 -04002212 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2213 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Liz Kammer12615db2021-09-28 09:19:17 -04002214 }),
2215 },
2216 })
2217}
2218
2219func TestCcLibraryProtoNoCanonicalPathFromRoot(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002220 runCcLibraryTestCase(t, Bp2buildTestCase{
2221 ModuleTypeUnderTest: "cc_library",
2222 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2223 Blueprint: soongCcProtoPreamble + `cc_library {
Liz Kammer12615db2021-09-28 09:19:17 -04002224 name: "foo",
2225 srcs: ["foo.proto"],
2226 proto: { canonical_path_from_root: false},
2227 include_build_directory: false,
2228}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002229 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002230 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer7756c8f2022-02-14 20:49:15 -05002231 "srcs": `["foo.proto"]`,
2232 "strip_import_prefix": `""`,
Alixe06d75b2022-08-31 18:28:19 +00002233 }), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002234 "deps": `[":foo_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002235 }), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002236 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05002237 "deps": `[":libprotobuf-cpp-lite"]`,
Alixe06d75b2022-08-31 18:28:19 +00002238 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Liz Kammer84b0ecb2022-09-14 10:49:13 -04002239 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2240 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Liz Kammer12615db2021-09-28 09:19:17 -04002241 }),
2242 },
2243 })
2244}
2245
2246func TestCcLibraryProtoExplicitCanonicalPathFromRoot(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002247 runCcLibraryTestCase(t, Bp2buildTestCase{
2248 ModuleTypeUnderTest: "cc_library",
2249 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2250 Blueprint: soongCcProtoPreamble + `cc_library {
Liz Kammer12615db2021-09-28 09:19:17 -04002251 name: "foo",
2252 srcs: ["foo.proto"],
2253 proto: { canonical_path_from_root: true},
2254 include_build_directory: false,
2255}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002256 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002257 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer7756c8f2022-02-14 20:49:15 -05002258 "srcs": `["foo.proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002259 }), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002260 "deps": `[":foo_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002261 }), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002262 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05002263 "deps": `[":libprotobuf-cpp-lite"]`,
Alixe06d75b2022-08-31 18:28:19 +00002264 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Liz Kammer84b0ecb2022-09-14 10:49:13 -04002265 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2266 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Liz Kammer12615db2021-09-28 09:19:17 -04002267 }),
2268 },
2269 })
2270}
2271
2272func TestCcLibraryProtoFull(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002273 runCcLibraryTestCase(t, Bp2buildTestCase{
2274 ModuleTypeUnderTest: "cc_library",
2275 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2276 Blueprint: soongCcProtoPreamble + `cc_library {
Liz Kammer12615db2021-09-28 09:19:17 -04002277 name: "foo",
2278 srcs: ["foo.proto"],
2279 proto: {
Liz Kammer12615db2021-09-28 09:19:17 -04002280 type: "full",
2281 },
2282 include_build_directory: false,
2283}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002284 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002285 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002286 "srcs": `["foo.proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002287 }), MakeBazelTarget("cc_proto_library", "foo_cc_proto", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002288 "deps": `[":foo_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002289 }), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002290 "implementation_whole_archive_deps": `[":foo_cc_proto"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05002291 "deps": `[":libprotobuf-cpp-full"]`,
Alixe06d75b2022-08-31 18:28:19 +00002292 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Liz Kammer84b0ecb2022-09-14 10:49:13 -04002293 "dynamic_deps": `[":libprotobuf-cpp-full"]`,
2294 "implementation_whole_archive_deps": `[":foo_cc_proto"]`,
Liz Kammer12615db2021-09-28 09:19:17 -04002295 }),
2296 },
2297 })
2298}
2299
2300func TestCcLibraryProtoLite(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002301 runCcLibraryTestCase(t, Bp2buildTestCase{
2302 ModuleTypeUnderTest: "cc_library",
2303 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2304 Blueprint: soongCcProtoPreamble + `cc_library {
Liz Kammer12615db2021-09-28 09:19:17 -04002305 name: "foo",
2306 srcs: ["foo.proto"],
2307 proto: {
Liz Kammer12615db2021-09-28 09:19:17 -04002308 type: "lite",
2309 },
2310 include_build_directory: false,
2311}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002312 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002313 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002314 "srcs": `["foo.proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002315 }), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002316 "deps": `[":foo_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002317 }), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002318 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Chris Parsons77acf2e2021-12-03 17:27:16 -05002319 "deps": `[":libprotobuf-cpp-lite"]`,
Alixe06d75b2022-08-31 18:28:19 +00002320 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Liz Kammer84b0ecb2022-09-14 10:49:13 -04002321 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2322 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Liz Kammer12615db2021-09-28 09:19:17 -04002323 }),
2324 },
2325 })
2326}
2327
2328func TestCcLibraryProtoExportHeaders(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002329 runCcLibraryTestCase(t, Bp2buildTestCase{
2330 ModuleTypeUnderTest: "cc_library",
2331 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2332 Blueprint: soongCcProtoPreamble + `cc_library {
Liz Kammer12615db2021-09-28 09:19:17 -04002333 name: "foo",
2334 srcs: ["foo.proto"],
2335 proto: {
Liz Kammer12615db2021-09-28 09:19:17 -04002336 export_proto_headers: true,
2337 },
2338 include_build_directory: false,
2339}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002340 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002341 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002342 "srcs": `["foo.proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002343 }), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04002344 "deps": `[":foo_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002345 }), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05002346 "deps": `[":libprotobuf-cpp-lite"]`,
Liz Kammer12615db2021-09-28 09:19:17 -04002347 "whole_archive_deps": `[":foo_cc_proto_lite"]`,
Alixe06d75b2022-08-31 18:28:19 +00002348 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Chris Parsons77acf2e2021-12-03 17:27:16 -05002349 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2350 "whole_archive_deps": `[":foo_cc_proto_lite"]`,
Liz Kammer12615db2021-09-28 09:19:17 -04002351 }),
2352 },
2353 })
2354}
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002355
Yu Liu2d136142022-08-18 14:46:13 -07002356func TestCcLibraryProtoIncludeDirs(t *testing.T) {
2357 runCcLibraryTestCase(t, Bp2buildTestCase{
2358 ModuleTypeUnderTest: "cc_library",
2359 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2360 Blueprint: soongCcProtoPreamble + `cc_library {
2361 name: "foo",
2362 srcs: ["foo.proto"],
2363 proto: {
2364 include_dirs: ["external/protobuf/src"],
2365 },
2366 include_build_directory: false,
2367}`,
2368 ExpectedBazelTargets: []string{
2369 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
2370 "srcs": `["foo.proto"]`,
2371 "deps": `["//external/protobuf:libprotobuf-proto"]`,
2372 }), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
2373 "deps": `[":foo_proto"]`,
2374 }), MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
2375 "deps": `[":libprotobuf-cpp-lite"]`,
2376 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
2377 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Liz Kammer84b0ecb2022-09-14 10:49:13 -04002378 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2379 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
Yu Liu2d136142022-08-18 14:46:13 -07002380 }),
2381 },
2382 })
2383}
2384
2385func TestCcLibraryProtoIncludeDirsUnknown(t *testing.T) {
2386 runCcLibraryTestCase(t, Bp2buildTestCase{
2387 ModuleTypeUnderTest: "cc_library",
2388 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2389 Blueprint: soongCcProtoPreamble + `cc_library {
2390 name: "foo",
2391 srcs: ["foo.proto"],
2392 proto: {
2393 include_dirs: ["external/protobuf/abc"],
2394 },
2395 include_build_directory: false,
2396}`,
Spandan Dasec39d512023-08-15 22:08:18 +00002397 ExpectedErr: fmt.Errorf("module \"foo\": TODO: Add support for proto.include_dir: external/protobuf/abc. This directory does not contain an Android.bp file"),
Yu Liu2d136142022-08-18 14:46:13 -07002398 })
2399}
2400
Yu Liu2aa806b2022-09-01 11:54:47 -07002401func TestCcLibraryConvertedProtoFilegroups(t *testing.T) {
2402 runCcLibraryTestCase(t, Bp2buildTestCase{
2403 ModuleTypeUnderTest: "cc_library",
2404 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2405 Blueprint: soongCcProtoPreamble + `
2406filegroup {
2407 name: "a_fg_proto",
2408 srcs: ["a_fg.proto"],
2409}
2410
2411cc_library {
2412 name: "a",
2413 srcs: [
2414 ":a_fg_proto",
2415 "a.proto",
2416 ],
2417 proto: {
2418 export_proto_headers: true,
2419 },
2420 include_build_directory: false,
2421}`,
2422 ExpectedBazelTargets: []string{
2423 MakeBazelTarget("proto_library", "a_proto", AttrNameToString{
Yu Liu2a85fb12022-09-15 22:18:48 -07002424 "deps": `[":a_fg_proto_bp2build_converted"]`,
Yu Liu2aa806b2022-09-01 11:54:47 -07002425 "srcs": `["a.proto"]`,
2426 }), MakeBazelTarget("cc_lite_proto_library", "a_cc_proto_lite", AttrNameToString{
2427 "deps": `[
2428 ":a_fg_proto_bp2build_converted",
2429 ":a_proto",
2430 ]`,
2431 }), MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
2432 "deps": `[":libprotobuf-cpp-lite"]`,
2433 "whole_archive_deps": `[":a_cc_proto_lite"]`,
2434 }), MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
2435 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2436 "whole_archive_deps": `[":a_cc_proto_lite"]`,
Spandan Dasdf3ec822023-08-04 02:19:53 +00002437 }), MakeBazelTargetNoRestrictions("proto_library", "a_fg_proto_proto", AttrNameToString{
Yu Liu2aa806b2022-09-01 11:54:47 -07002438 "srcs": `["a_fg.proto"]`,
Liz Kammer2b3f56e2023-03-23 11:51:49 -04002439 "tags": `[
2440 "apex_available=//apex_available:anyapex",
2441 "manual",
2442 ]`,
Spandan Dasdf3ec822023-08-04 02:19:53 +00002443 }), MakeBazelTargetNoRestrictions("alias", "a_fg_proto_bp2build_converted", AttrNameToString{
2444 "actual": `"//.:a_fg_proto_proto"`,
2445 "tags": `[
2446 "apex_available=//apex_available:anyapex",
2447 "manual",
2448 ]`,
Yu Liu2aa806b2022-09-01 11:54:47 -07002449 }), MakeBazelTargetNoRestrictions("filegroup", "a_fg_proto", AttrNameToString{
2450 "srcs": `["a_fg.proto"]`,
2451 }),
2452 },
2453 })
2454}
2455
2456func TestCcLibraryConvertedProtoFilegroupsNoProtoFiles(t *testing.T) {
2457 runCcLibraryTestCase(t, Bp2buildTestCase{
2458 ModuleTypeUnderTest: "cc_library",
2459 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2460 Blueprint: soongCcProtoPreamble + `
2461filegroup {
2462 name: "a_fg_proto",
2463 srcs: ["a_fg.proto"],
2464}
2465
2466cc_library {
2467 name: "a",
2468 srcs: [
2469 ":a_fg_proto",
2470 ],
2471 proto: {
2472 export_proto_headers: true,
2473 },
2474 include_build_directory: false,
2475}`,
2476 ExpectedBazelTargets: []string{
2477 MakeBazelTarget("cc_lite_proto_library", "a_cc_proto_lite", AttrNameToString{
2478 "deps": `[":a_fg_proto_bp2build_converted"]`,
2479 }), MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
2480 "deps": `[":libprotobuf-cpp-lite"]`,
2481 "whole_archive_deps": `[":a_cc_proto_lite"]`,
2482 }), MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
2483 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2484 "whole_archive_deps": `[":a_cc_proto_lite"]`,
Spandan Dasdf3ec822023-08-04 02:19:53 +00002485 }), MakeBazelTargetNoRestrictions("proto_library", "a_fg_proto_proto", AttrNameToString{
Yu Liu2aa806b2022-09-01 11:54:47 -07002486 "srcs": `["a_fg.proto"]`,
Liz Kammer2b3f56e2023-03-23 11:51:49 -04002487 "tags": `[
2488 "apex_available=//apex_available:anyapex",
2489 "manual",
2490 ]`,
Spandan Dasdf3ec822023-08-04 02:19:53 +00002491 }), MakeBazelTargetNoRestrictions("alias", "a_fg_proto_bp2build_converted", AttrNameToString{
2492 "actual": `"//.:a_fg_proto_proto"`,
2493 "tags": `[
2494 "apex_available=//apex_available:anyapex",
2495 "manual",
2496 ]`,
Yu Liu2aa806b2022-09-01 11:54:47 -07002497 }), MakeBazelTargetNoRestrictions("filegroup", "a_fg_proto", AttrNameToString{
2498 "srcs": `["a_fg.proto"]`,
2499 }),
2500 },
2501 })
2502}
2503
2504func TestCcLibraryExternalConvertedProtoFilegroups(t *testing.T) {
2505 runCcLibraryTestCase(t, Bp2buildTestCase{
2506 ModuleTypeUnderTest: "cc_library",
2507 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2508 Filesystem: map[string]string{
2509 "path/to/A/Android.bp": `
2510filegroup {
2511 name: "a_fg_proto",
2512 srcs: ["a_fg.proto"],
2513}`,
2514 },
2515 Blueprint: soongCcProtoPreamble + `
2516cc_library {
2517 name: "a",
2518 srcs: [
2519 ":a_fg_proto",
2520 "a.proto",
2521 ],
2522 proto: {
2523 export_proto_headers: true,
2524 },
2525 include_build_directory: false,
2526}`,
2527 ExpectedBazelTargets: []string{
2528 MakeBazelTarget("proto_library", "a_proto", AttrNameToString{
Yu Liu2a85fb12022-09-15 22:18:48 -07002529 "deps": `["//path/to/A:a_fg_proto_bp2build_converted"]`,
Yu Liu2aa806b2022-09-01 11:54:47 -07002530 "srcs": `["a.proto"]`,
2531 }), MakeBazelTarget("cc_lite_proto_library", "a_cc_proto_lite", AttrNameToString{
2532 "deps": `[
2533 "//path/to/A:a_fg_proto_bp2build_converted",
2534 ":a_proto",
2535 ]`,
2536 }), MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
2537 "deps": `[":libprotobuf-cpp-lite"]`,
2538 "whole_archive_deps": `[":a_cc_proto_lite"]`,
2539 }), MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
2540 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2541 "whole_archive_deps": `[":a_cc_proto_lite"]`,
2542 }),
2543 },
2544 })
2545}
2546
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002547func TestCcLibraryProtoFilegroups(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002548 runCcLibraryTestCase(t, Bp2buildTestCase{
2549 ModuleTypeUnderTest: "cc_library",
2550 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2551 Blueprint: soongCcProtoPreamble +
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002552 simpleModuleDoNotConvertBp2build("filegroup", "a_fg_proto") +
2553 simpleModuleDoNotConvertBp2build("filegroup", "b_protos") +
2554 simpleModuleDoNotConvertBp2build("filegroup", "c-proto-srcs") +
2555 simpleModuleDoNotConvertBp2build("filegroup", "proto-srcs-d") + `
2556cc_library {
2557 name: "a",
2558 srcs: [":a_fg_proto"],
2559 proto: {
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002560 export_proto_headers: true,
2561 },
2562 include_build_directory: false,
2563}
2564
2565cc_library {
2566 name: "b",
2567 srcs: [":b_protos"],
2568 proto: {
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002569 export_proto_headers: true,
2570 },
2571 include_build_directory: false,
2572}
2573
2574cc_library {
2575 name: "c",
2576 srcs: [":c-proto-srcs"],
2577 proto: {
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002578 export_proto_headers: true,
2579 },
2580 include_build_directory: false,
2581}
2582
2583cc_library {
2584 name: "d",
2585 srcs: [":proto-srcs-d"],
2586 proto: {
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002587 export_proto_headers: true,
2588 },
2589 include_build_directory: false,
2590}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002591 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00002592 MakeBazelTarget("proto_library", "a_proto", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002593 "srcs": `[":a_fg_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002594 }), MakeBazelTarget("cc_lite_proto_library", "a_cc_proto_lite", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002595 "deps": `[":a_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002596 }), MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002597 "deps": `[":libprotobuf-cpp-lite"]`,
2598 "whole_archive_deps": `[":a_cc_proto_lite"]`,
2599 "srcs": `[":a_fg_proto_cpp_srcs"]`,
2600 "srcs_as": `[":a_fg_proto_as_srcs"]`,
2601 "srcs_c": `[":a_fg_proto_c_srcs"]`,
Alixe06d75b2022-08-31 18:28:19 +00002602 }), MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002603 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2604 "whole_archive_deps": `[":a_cc_proto_lite"]`,
2605 "srcs": `[":a_fg_proto_cpp_srcs"]`,
2606 "srcs_as": `[":a_fg_proto_as_srcs"]`,
2607 "srcs_c": `[":a_fg_proto_c_srcs"]`,
Alixe06d75b2022-08-31 18:28:19 +00002608 }), MakeBazelTarget("proto_library", "b_proto", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002609 "srcs": `[":b_protos"]`,
Alixe06d75b2022-08-31 18:28:19 +00002610 }), MakeBazelTarget("cc_lite_proto_library", "b_cc_proto_lite", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002611 "deps": `[":b_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002612 }), MakeBazelTarget("cc_library_static", "b_bp2build_cc_library_static", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002613 "deps": `[":libprotobuf-cpp-lite"]`,
2614 "whole_archive_deps": `[":b_cc_proto_lite"]`,
2615 "srcs": `[":b_protos_cpp_srcs"]`,
2616 "srcs_as": `[":b_protos_as_srcs"]`,
2617 "srcs_c": `[":b_protos_c_srcs"]`,
Alixe06d75b2022-08-31 18:28:19 +00002618 }), MakeBazelTarget("cc_library_shared", "b", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002619 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2620 "whole_archive_deps": `[":b_cc_proto_lite"]`,
2621 "srcs": `[":b_protos_cpp_srcs"]`,
2622 "srcs_as": `[":b_protos_as_srcs"]`,
2623 "srcs_c": `[":b_protos_c_srcs"]`,
Alixe06d75b2022-08-31 18:28:19 +00002624 }), MakeBazelTarget("proto_library", "c_proto", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002625 "srcs": `[":c-proto-srcs"]`,
Alixe06d75b2022-08-31 18:28:19 +00002626 }), MakeBazelTarget("cc_lite_proto_library", "c_cc_proto_lite", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002627 "deps": `[":c_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002628 }), MakeBazelTarget("cc_library_static", "c_bp2build_cc_library_static", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002629 "deps": `[":libprotobuf-cpp-lite"]`,
2630 "whole_archive_deps": `[":c_cc_proto_lite"]`,
2631 "srcs": `[":c-proto-srcs_cpp_srcs"]`,
2632 "srcs_as": `[":c-proto-srcs_as_srcs"]`,
2633 "srcs_c": `[":c-proto-srcs_c_srcs"]`,
Alixe06d75b2022-08-31 18:28:19 +00002634 }), MakeBazelTarget("cc_library_shared", "c", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002635 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2636 "whole_archive_deps": `[":c_cc_proto_lite"]`,
2637 "srcs": `[":c-proto-srcs_cpp_srcs"]`,
2638 "srcs_as": `[":c-proto-srcs_as_srcs"]`,
2639 "srcs_c": `[":c-proto-srcs_c_srcs"]`,
Alixe06d75b2022-08-31 18:28:19 +00002640 }), MakeBazelTarget("proto_library", "d_proto", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002641 "srcs": `[":proto-srcs-d"]`,
Alixe06d75b2022-08-31 18:28:19 +00002642 }), MakeBazelTarget("cc_lite_proto_library", "d_cc_proto_lite", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002643 "deps": `[":d_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00002644 }), MakeBazelTarget("cc_library_static", "d_bp2build_cc_library_static", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002645 "deps": `[":libprotobuf-cpp-lite"]`,
2646 "whole_archive_deps": `[":d_cc_proto_lite"]`,
2647 "srcs": `[":proto-srcs-d_cpp_srcs"]`,
2648 "srcs_as": `[":proto-srcs-d_as_srcs"]`,
2649 "srcs_c": `[":proto-srcs-d_c_srcs"]`,
Alixe06d75b2022-08-31 18:28:19 +00002650 }), MakeBazelTarget("cc_library_shared", "d", AttrNameToString{
Liz Kammeraabfb5d2021-12-08 15:25:06 -05002651 "dynamic_deps": `[":libprotobuf-cpp-lite"]`,
2652 "whole_archive_deps": `[":d_cc_proto_lite"]`,
2653 "srcs": `[":proto-srcs-d_cpp_srcs"]`,
2654 "srcs_as": `[":proto-srcs-d_as_srcs"]`,
2655 "srcs_c": `[":proto-srcs-d_c_srcs"]`,
2656 }),
2657 },
2658 })
2659}
Chris Parsons58852a02021-12-09 18:10:18 -05002660
2661func TestCcLibraryDisabledArchAndTarget(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002662 runCcLibraryTestCase(t, Bp2buildTestCase{
2663 ModuleTypeUnderTest: "cc_library",
2664 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2665 Blueprint: soongCcProtoPreamble + `cc_library {
Chris Parsons58852a02021-12-09 18:10:18 -05002666 name: "foo",
2667 srcs: ["foo.cpp"],
Liz Kammerdfeb1202022-05-13 17:20:20 -04002668 host_supported: true,
Chris Parsons58852a02021-12-09 18:10:18 -05002669 target: {
2670 darwin: {
2671 enabled: false,
2672 },
2673 windows: {
2674 enabled: false,
2675 },
2676 linux_glibc_x86: {
2677 enabled: false,
2678 },
2679 },
2680 include_build_directory: false,
2681}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002682 ExpectedBazelTargets: makeCcLibraryTargets("foo", AttrNameToString{
Chris Parsons58852a02021-12-09 18:10:18 -05002683 "srcs": `["foo.cpp"]`,
2684 "target_compatible_with": `select({
2685 "//build/bazel/platforms/os_arch:darwin_arm64": ["@platforms//:incompatible"],
2686 "//build/bazel/platforms/os_arch:darwin_x86_64": ["@platforms//:incompatible"],
2687 "//build/bazel/platforms/os_arch:linux_glibc_x86": ["@platforms//:incompatible"],
2688 "//build/bazel/platforms/os_arch:windows_x86": ["@platforms//:incompatible"],
2689 "//build/bazel/platforms/os_arch:windows_x86_64": ["@platforms//:incompatible"],
2690 "//conditions:default": [],
2691 })`,
2692 }),
2693 })
2694}
2695
2696func TestCcLibraryDisabledArchAndTargetWithDefault(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002697 runCcLibraryTestCase(t, Bp2buildTestCase{
2698 ModuleTypeUnderTest: "cc_library",
2699 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2700 Blueprint: soongCcProtoPreamble + `cc_library {
Chris Parsons58852a02021-12-09 18:10:18 -05002701 name: "foo",
2702 srcs: ["foo.cpp"],
2703 enabled: false,
Liz Kammerdfeb1202022-05-13 17:20:20 -04002704 host_supported: true,
Chris Parsons58852a02021-12-09 18:10:18 -05002705 target: {
2706 darwin: {
2707 enabled: true,
2708 },
2709 windows: {
2710 enabled: false,
2711 },
2712 linux_glibc_x86: {
2713 enabled: false,
2714 },
2715 },
2716 include_build_directory: false,
2717}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002718 ExpectedBazelTargets: makeCcLibraryTargets("foo", AttrNameToString{
Chris Parsons58852a02021-12-09 18:10:18 -05002719 "srcs": `["foo.cpp"]`,
2720 "target_compatible_with": `select({
2721 "//build/bazel/platforms/os_arch:darwin_arm64": [],
2722 "//build/bazel/platforms/os_arch:darwin_x86_64": [],
2723 "//conditions:default": ["@platforms//:incompatible"],
2724 })`,
2725 }),
2726 })
2727}
2728
2729func TestCcLibrarySharedDisabled(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002730 runCcLibraryTestCase(t, Bp2buildTestCase{
2731 ModuleTypeUnderTest: "cc_library",
2732 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2733 Blueprint: soongCcProtoPreamble + `cc_library {
Chris Parsons58852a02021-12-09 18:10:18 -05002734 name: "foo",
2735 srcs: ["foo.cpp"],
2736 enabled: false,
2737 shared: {
2738 enabled: true,
2739 },
2740 target: {
2741 android: {
2742 shared: {
2743 enabled: false,
2744 },
2745 }
2746 },
2747 include_build_directory: false,
2748}`,
Alixe06d75b2022-08-31 18:28:19 +00002749 ExpectedBazelTargets: []string{MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Chris Parsons58852a02021-12-09 18:10:18 -05002750 "srcs": `["foo.cpp"]`,
2751 "target_compatible_with": `["@platforms//:incompatible"]`,
Alixe06d75b2022-08-31 18:28:19 +00002752 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Chris Parsons58852a02021-12-09 18:10:18 -05002753 "srcs": `["foo.cpp"]`,
2754 "target_compatible_with": `select({
2755 "//build/bazel/platforms/os:android": ["@platforms//:incompatible"],
2756 "//conditions:default": [],
2757 })`,
2758 }),
2759 },
2760 })
2761}
2762
2763func TestCcLibraryStaticDisabledForSomeArch(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002764 runCcLibraryTestCase(t, Bp2buildTestCase{
2765 ModuleTypeUnderTest: "cc_library",
2766 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2767 Blueprint: soongCcProtoPreamble + `cc_library {
Chris Parsons58852a02021-12-09 18:10:18 -05002768 name: "foo",
Liz Kammerdfeb1202022-05-13 17:20:20 -04002769 host_supported: true,
Chris Parsons58852a02021-12-09 18:10:18 -05002770 srcs: ["foo.cpp"],
2771 shared: {
2772 enabled: false
2773 },
2774 target: {
2775 darwin: {
2776 enabled: true,
2777 },
2778 windows: {
2779 enabled: false,
2780 },
2781 linux_glibc_x86: {
2782 shared: {
2783 enabled: true,
2784 },
2785 },
2786 },
2787 include_build_directory: false,
2788}`,
Alixe06d75b2022-08-31 18:28:19 +00002789 ExpectedBazelTargets: []string{MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Chris Parsons58852a02021-12-09 18:10:18 -05002790 "srcs": `["foo.cpp"]`,
2791 "target_compatible_with": `select({
2792 "//build/bazel/platforms/os:windows": ["@platforms//:incompatible"],
2793 "//conditions:default": [],
2794 })`,
Alixe06d75b2022-08-31 18:28:19 +00002795 }), MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Chris Parsons58852a02021-12-09 18:10:18 -05002796 "srcs": `["foo.cpp"]`,
2797 "target_compatible_with": `select({
2798 "//build/bazel/platforms/os_arch:darwin_arm64": [],
2799 "//build/bazel/platforms/os_arch:darwin_x86_64": [],
2800 "//build/bazel/platforms/os_arch:linux_glibc_x86": [],
2801 "//conditions:default": ["@platforms//:incompatible"],
2802 })`,
2803 }),
2804 }})
2805}
Jingwen Chen0ee88a62022-01-07 14:55:29 +00002806
2807func TestCcLibraryStubs(t *testing.T) {
Wei Li81852ca2022-07-27 00:22:06 -07002808 expectedBazelTargets := makeCcLibraryTargets("a", AttrNameToString{
Yu Liu56ccb1a2022-11-12 10:47:07 -08002809 "stubs_symbol_file": `"a.map.txt"`,
Wei Li81852ca2022-07-27 00:22:06 -07002810 })
2811 expectedBazelTargets = append(expectedBazelTargets, makeCcStubSuiteTargets("a", AttrNameToString{
Sam Delmerico5f906492023-03-15 18:06:18 -04002812 "soname": `"a.so"`,
2813 "source_library_label": `"//foo/bar:a"`,
2814 "stubs_symbol_file": `"a.map.txt"`,
Wei Li81852ca2022-07-27 00:22:06 -07002815 "stubs_versions": `[
2816 "28",
2817 "29",
2818 "current",
2819 ]`,
2820 }))
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002821 runCcLibraryTestCase(t, Bp2buildTestCase{
2822 Description: "cc_library stubs",
2823 ModuleTypeUnderTest: "cc_library",
2824 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2825 Dir: "foo/bar",
2826 Filesystem: map[string]string{
Jingwen Chen0ee88a62022-01-07 14:55:29 +00002827 "foo/bar/Android.bp": `
2828cc_library {
2829 name: "a",
2830 stubs: { symbol_file: "a.map.txt", versions: ["28", "29", "current"] },
2831 bazel_module: { bp2build_available: true },
2832 include_build_directory: false,
2833}
2834`,
2835 },
Wei Li81852ca2022-07-27 00:22:06 -07002836 Blueprint: soongCcLibraryPreamble,
2837 ExpectedBazelTargets: expectedBazelTargets,
Jingwen Chen0ee88a62022-01-07 14:55:29 +00002838 },
2839 )
2840}
Liz Kammerf38a8372022-02-04 15:39:00 -05002841
Trevor Radcliffe0ed6b7d2022-09-12 20:19:26 +00002842func TestCcLibraryStubsAcrossConfigsDuplicatesRemoved(t *testing.T) {
2843 runCcLibraryTestCase(t, Bp2buildTestCase{
2844 Description: "stub target generation of the same lib across configs should not result in duplicates",
2845 ModuleTypeUnderTest: "cc_library",
2846 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2847 Filesystem: map[string]string{
2848 "bar.map.txt": "",
2849 },
2850 Blueprint: `
2851cc_library {
2852 name: "barlib",
2853 stubs: { symbol_file: "bar.map.txt", versions: ["28", "29", "current"] },
2854 bazel_module: { bp2build_available: false },
2855}
2856cc_library {
2857 name: "foolib",
2858 shared_libs: ["barlib"],
2859 target: {
2860 android: {
2861 shared_libs: ["barlib"],
2862 },
2863 },
2864 bazel_module: { bp2build_available: true },
Liz Kammer48cdbeb2023-03-17 10:17:50 -04002865 apex_available: ["foo"],
Trevor Radcliffe0ed6b7d2022-09-12 20:19:26 +00002866}`,
2867 ExpectedBazelTargets: makeCcLibraryTargets("foolib", AttrNameToString{
2868 "implementation_dynamic_deps": `select({
Spandan Das6d4d9da2023-04-18 06:20:40 +00002869 "//build/bazel/rules/apex:foo": ["@api_surfaces//module-libapi/current:barlib"],
Trevor Radcliffe0ed6b7d2022-09-12 20:19:26 +00002870 "//conditions:default": [":barlib"],
2871 })`,
2872 "local_includes": `["."]`,
Liz Kammer48cdbeb2023-03-17 10:17:50 -04002873 "tags": `["apex_available=foo"]`,
Trevor Radcliffe0ed6b7d2022-09-12 20:19:26 +00002874 }),
2875 })
2876}
2877
Liz Kammerffc17e42022-11-23 09:42:05 -05002878func TestCcLibraryExcludesLibsHost(t *testing.T) {
2879 runCcLibraryTestCase(t, Bp2buildTestCase{
2880 ModuleTypeUnderTest: "cc_library",
2881 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2882 Filesystem: map[string]string{
2883 "bar.map.txt": "",
2884 },
2885 Blueprint: simpleModuleDoNotConvertBp2build("cc_library", "bazlib") + `
2886cc_library {
2887 name: "quxlib",
2888 stubs: { symbol_file: "bar.map.txt", versions: ["current"] },
2889 bazel_module: { bp2build_available: false },
2890}
2891cc_library {
2892 name: "barlib",
2893 stubs: { symbol_file: "bar.map.txt", versions: ["28", "29", "current"] },
2894 bazel_module: { bp2build_available: false },
2895}
2896cc_library {
2897 name: "foolib",
2898 shared_libs: ["barlib", "quxlib"],
2899 target: {
2900 host: {
2901 shared_libs: ["bazlib"],
2902 exclude_shared_libs: ["barlib"],
2903 },
2904 },
2905 include_build_directory: false,
2906 bazel_module: { bp2build_available: true },
Liz Kammer48cdbeb2023-03-17 10:17:50 -04002907 apex_available: ["foo"],
Liz Kammerffc17e42022-11-23 09:42:05 -05002908}`,
2909 ExpectedBazelTargets: makeCcLibraryTargets("foolib", AttrNameToString{
2910 "implementation_dynamic_deps": `select({
2911 "//build/bazel/platforms/os:darwin": [":bazlib"],
Liz Kammerffc17e42022-11-23 09:42:05 -05002912 "//build/bazel/platforms/os:linux_bionic": [":bazlib"],
Colin Cross133782e2022-12-20 15:29:31 -08002913 "//build/bazel/platforms/os:linux_glibc": [":bazlib"],
Liz Kammerffc17e42022-11-23 09:42:05 -05002914 "//build/bazel/platforms/os:linux_musl": [":bazlib"],
2915 "//build/bazel/platforms/os:windows": [":bazlib"],
2916 "//conditions:default": [],
2917 }) + select({
2918 "//build/bazel/platforms/os:darwin": [":quxlib"],
Liz Kammerffc17e42022-11-23 09:42:05 -05002919 "//build/bazel/platforms/os:linux_bionic": [":quxlib"],
Colin Cross133782e2022-12-20 15:29:31 -08002920 "//build/bazel/platforms/os:linux_glibc": [":quxlib"],
Liz Kammerffc17e42022-11-23 09:42:05 -05002921 "//build/bazel/platforms/os:linux_musl": [":quxlib"],
2922 "//build/bazel/platforms/os:windows": [":quxlib"],
Spandan Das6d4d9da2023-04-18 06:20:40 +00002923 "//build/bazel/rules/apex:foo": [
2924 "@api_surfaces//module-libapi/current:barlib",
2925 "@api_surfaces//module-libapi/current:quxlib",
2926 ],
Liz Kammerffc17e42022-11-23 09:42:05 -05002927 "//conditions:default": [
2928 ":barlib",
2929 ":quxlib",
2930 ],
2931 })`,
Liz Kammer48cdbeb2023-03-17 10:17:50 -04002932 "tags": `["apex_available=foo"]`,
Liz Kammerffc17e42022-11-23 09:42:05 -05002933 }),
2934 })
2935}
2936
Liz Kammerf38a8372022-02-04 15:39:00 -05002937func TestCcLibraryEscapeLdflags(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002938 runCcLibraryTestCase(t, Bp2buildTestCase{
2939 ModuleTypeUnderTest: "cc_library",
2940 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2941 Blueprint: soongCcProtoPreamble + `cc_library {
Liz Kammerf38a8372022-02-04 15:39:00 -05002942 name: "foo",
2943 ldflags: ["-Wl,--rpath,${ORIGIN}"],
2944 include_build_directory: false,
2945}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002946 ExpectedBazelTargets: makeCcLibraryTargets("foo", AttrNameToString{
Liz Kammerf38a8372022-02-04 15:39:00 -05002947 "linkopts": `["-Wl,--rpath,$${ORIGIN}"]`,
2948 }),
2949 })
2950}
Trevor Radcliffeef9c9002022-05-13 20:55:35 +00002951
2952func TestCcLibraryConvertLex(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002953 runCcLibraryTestCase(t, Bp2buildTestCase{
2954 ModuleTypeUnderTest: "cc_library",
2955 ModuleTypeUnderTestFactory: cc.LibraryFactory,
2956 Filesystem: map[string]string{
Trevor Radcliffeef9c9002022-05-13 20:55:35 +00002957 "foo.c": "",
2958 "bar.cc": "",
2959 "foo1.l": "",
2960 "bar1.ll": "",
2961 "foo2.l": "",
2962 "bar2.ll": "",
2963 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002964 Blueprint: `cc_library {
Trevor Radcliffeef9c9002022-05-13 20:55:35 +00002965 name: "foo_lib",
2966 srcs: ["foo.c", "bar.cc", "foo1.l", "foo2.l", "bar1.ll", "bar2.ll"],
2967 lex: { flags: ["--foo_flags"] },
2968 include_build_directory: false,
2969 bazel_module: { bp2build_available: true },
2970}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002971 ExpectedBazelTargets: append([]string{
Alixe06d75b2022-08-31 18:28:19 +00002972 MakeBazelTarget("genlex", "foo_lib_genlex_l", AttrNameToString{
Trevor Radcliffeef9c9002022-05-13 20:55:35 +00002973 "srcs": `[
2974 "foo1.l",
2975 "foo2.l",
2976 ]`,
2977 "lexopts": `["--foo_flags"]`,
2978 }),
Alixe06d75b2022-08-31 18:28:19 +00002979 MakeBazelTarget("genlex", "foo_lib_genlex_ll", AttrNameToString{
Trevor Radcliffeef9c9002022-05-13 20:55:35 +00002980 "srcs": `[
2981 "bar1.ll",
2982 "bar2.ll",
2983 ]`,
2984 "lexopts": `["--foo_flags"]`,
2985 }),
2986 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00002987 makeCcLibraryTargets("foo_lib", AttrNameToString{
Trevor Radcliffeef9c9002022-05-13 20:55:35 +00002988 "srcs": `[
2989 "bar.cc",
2990 ":foo_lib_genlex_ll",
2991 ]`,
2992 "srcs_c": `[
2993 "foo.c",
2994 ":foo_lib_genlex_l",
2995 ]`,
2996 })...),
2997 })
2998}
Cole Faust6b29f592022-08-09 09:50:56 -07002999
3000func TestCCLibraryRuntimeDeps(t *testing.T) {
3001 runCcLibrarySharedTestCase(t, Bp2buildTestCase{
3002 Blueprint: `cc_library_shared {
3003 name: "bar",
3004}
3005
3006cc_library {
3007 name: "foo",
3008 runtime_libs: ["foo"],
3009}`,
3010 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00003011 MakeBazelTarget("cc_library_shared", "bar", AttrNameToString{
Cole Faust6b29f592022-08-09 09:50:56 -07003012 "local_includes": `["."]`,
3013 }),
Alixe06d75b2022-08-31 18:28:19 +00003014 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Cole Faust6b29f592022-08-09 09:50:56 -07003015 "runtime_deps": `[":foo"]`,
3016 "local_includes": `["."]`,
3017 }),
Alixe06d75b2022-08-31 18:28:19 +00003018 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Cole Faust6b29f592022-08-09 09:50:56 -07003019 "runtime_deps": `[":foo"]`,
3020 "local_includes": `["."]`,
3021 }),
3022 },
3023 })
3024}
Cole Faust5fa4e962022-08-22 14:31:04 -07003025
3026func TestCcLibraryWithInstructionSet(t *testing.T) {
3027 runCcLibraryTestCase(t, Bp2buildTestCase{
3028 ModuleTypeUnderTest: "cc_library",
3029 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3030 Blueprint: `cc_library {
3031 name: "foo",
3032 arch: {
3033 arm: {
3034 instruction_set: "arm",
3035 }
3036 }
3037}
3038`,
3039 ExpectedBazelTargets: makeCcLibraryTargets("foo", AttrNameToString{
3040 "features": `select({
Trevor Radcliffe5f0c2ac2023-05-15 18:00:59 +00003041 "//build/bazel/platforms/arch:arm": ["arm_isa_arm"],
Cole Faust5fa4e962022-08-22 14:31:04 -07003042 "//conditions:default": [],
3043 })`,
3044 "local_includes": `["."]`,
3045 }),
3046 })
3047}
Vinh Tran9f6796a2022-08-16 13:10:31 -04003048
Alex Márquez Pérez Muñíz Díaz Púras Thaureauxa56e9702022-02-23 18:39:59 -05003049func TestCcLibraryEmptySuffix(t *testing.T) {
3050 runCcLibraryTestCase(t, Bp2buildTestCase{
3051 Description: "cc_library with empty suffix",
3052 ModuleTypeUnderTest: "cc_library",
3053 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3054 Filesystem: map[string]string{
3055 "foo.c": "",
3056 },
3057 Blueprint: `cc_library {
3058 name: "foo",
3059 suffix: "",
3060 srcs: ["foo.c"],
3061 include_build_directory: false,
3062}`,
3063 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00003064 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Púras Thaureauxa56e9702022-02-23 18:39:59 -05003065 "srcs_c": `["foo.c"]`,
3066 }),
Alixe06d75b2022-08-31 18:28:19 +00003067 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Púras Thaureauxa56e9702022-02-23 18:39:59 -05003068 "srcs_c": `["foo.c"]`,
3069 "suffix": `""`,
3070 }),
3071 },
3072 })
3073}
3074
3075func TestCcLibrarySuffix(t *testing.T) {
3076 runCcLibraryTestCase(t, Bp2buildTestCase{
3077 Description: "cc_library with suffix",
3078 ModuleTypeUnderTest: "cc_library",
3079 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3080 Filesystem: map[string]string{
3081 "foo.c": "",
3082 },
3083 Blueprint: `cc_library {
3084 name: "foo",
3085 suffix: "-suf",
3086 srcs: ["foo.c"],
3087 include_build_directory: false,
3088}`,
3089 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00003090 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Púras Thaureauxa56e9702022-02-23 18:39:59 -05003091 "srcs_c": `["foo.c"]`,
3092 }),
Alixe06d75b2022-08-31 18:28:19 +00003093 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Púras Thaureauxa56e9702022-02-23 18:39:59 -05003094 "srcs_c": `["foo.c"]`,
3095 "suffix": `"-suf"`,
3096 }),
3097 },
3098 })
3099}
3100
3101func TestCcLibraryArchVariantSuffix(t *testing.T) {
3102 runCcLibraryTestCase(t, Bp2buildTestCase{
3103 Description: "cc_library with arch-variant suffix",
3104 ModuleTypeUnderTest: "cc_library",
3105 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3106 Filesystem: map[string]string{
3107 "foo.c": "",
3108 },
3109 Blueprint: `cc_library {
3110 name: "foo",
3111 arch: {
3112 arm64: { suffix: "-64" },
3113 arm: { suffix: "-32" },
3114 },
3115 srcs: ["foo.c"],
3116 include_build_directory: false,
3117}`,
3118 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00003119 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Púras Thaureauxa56e9702022-02-23 18:39:59 -05003120 "srcs_c": `["foo.c"]`,
3121 }),
Alixe06d75b2022-08-31 18:28:19 +00003122 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Alex Márquez Pérez Muñíz Díaz Púras Thaureauxa56e9702022-02-23 18:39:59 -05003123 "srcs_c": `["foo.c"]`,
3124 "suffix": `select({
3125 "//build/bazel/platforms/arch:arm": "-32",
3126 "//build/bazel/platforms/arch:arm64": "-64",
3127 "//conditions:default": None,
3128 })`,
3129 }),
3130 },
3131 })
3132}
3133
Vinh Tran367d89d2023-04-28 11:21:25 -04003134func TestCcLibraryWithAidlLibrary(t *testing.T) {
3135 runCcLibraryTestCase(t, Bp2buildTestCase{
3136 Description: "cc_library with aidl_library",
3137 ModuleTypeUnderTest: "cc_library",
3138 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3139 Blueprint: `
3140aidl_library {
3141 name: "A_aidl",
3142 srcs: ["aidl/A.aidl"],
3143 hdrs: ["aidl/Header.aidl"],
3144 strip_import_prefix: "aidl",
3145}
3146cc_library {
3147 name: "foo",
3148 aidl: {
3149 libs: ["A_aidl"],
Vinh Trane6842942023-04-28 11:21:25 -04003150 },
3151 export_include_dirs: ["include"],
Vinh Tran367d89d2023-04-28 11:21:25 -04003152}`,
3153 ExpectedBazelTargets: []string{
3154 MakeBazelTargetNoRestrictions("aidl_library", "A_aidl", AttrNameToString{
3155 "srcs": `["aidl/A.aidl"]`,
3156 "hdrs": `["aidl/Header.aidl"]`,
3157 "strip_import_prefix": `"aidl"`,
3158 "tags": `["apex_available=//apex_available:anyapex"]`,
3159 }),
3160 MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
Vinh Trane6842942023-04-28 11:21:25 -04003161 "deps": `[":A_aidl"]`,
3162 "local_includes": `["."]`,
3163 "export_includes": `["include"]`,
Vinh Tran367d89d2023-04-28 11:21:25 -04003164 }),
3165 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
3166 "implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
3167 "local_includes": `["."]`,
Vinh Trane6842942023-04-28 11:21:25 -04003168 "export_includes": `["include"]`,
Vinh Tran367d89d2023-04-28 11:21:25 -04003169 }),
3170 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3171 "implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
3172 "local_includes": `["."]`,
Vinh Trane6842942023-04-28 11:21:25 -04003173 "export_includes": `["include"]`,
Vinh Tran367d89d2023-04-28 11:21:25 -04003174 }),
3175 },
3176 })
3177}
3178
Vinh Tran9f6796a2022-08-16 13:10:31 -04003179func TestCcLibraryWithAidlSrcs(t *testing.T) {
3180 runCcLibraryTestCase(t, Bp2buildTestCase{
3181 Description: "cc_library with aidl srcs",
3182 ModuleTypeUnderTest: "cc_library",
3183 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3184 Blueprint: `
3185filegroup {
3186 name: "A_aidl",
3187 srcs: ["aidl/A.aidl"],
3188 path: "aidl",
3189}
3190cc_library {
3191 name: "foo",
3192 srcs: [
3193 ":A_aidl",
3194 "B.aidl",
3195 ],
3196}`,
3197 ExpectedBazelTargets: []string{
3198 MakeBazelTargetNoRestrictions("aidl_library", "A_aidl", AttrNameToString{
3199 "srcs": `["aidl/A.aidl"]`,
3200 "strip_import_prefix": `"aidl"`,
Liz Kammer2b3f56e2023-03-23 11:51:49 -04003201 "tags": `["apex_available=//apex_available:anyapex"]`,
Vinh Tran9f6796a2022-08-16 13:10:31 -04003202 }),
Alixe06d75b2022-08-31 18:28:19 +00003203 MakeBazelTarget("aidl_library", "foo_aidl_library", AttrNameToString{
Vinh Tran9f6796a2022-08-16 13:10:31 -04003204 "srcs": `["B.aidl"]`,
3205 }),
Alixe06d75b2022-08-31 18:28:19 +00003206 MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
Vinh Trane6842942023-04-28 11:21:25 -04003207 "local_includes": `["."]`,
Vinh Tran9f6796a2022-08-16 13:10:31 -04003208 "deps": `[
3209 ":A_aidl",
3210 ":foo_aidl_library",
3211 ]`,
3212 }),
Alixe06d75b2022-08-31 18:28:19 +00003213 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Vinh Tranfde57eb2022-08-29 17:46:58 -04003214 "implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
3215 "local_includes": `["."]`,
Vinh Tran9f6796a2022-08-16 13:10:31 -04003216 }),
Alixe06d75b2022-08-31 18:28:19 +00003217 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Liz Kammer84b0ecb2022-09-14 10:49:13 -04003218 "implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
3219 "local_includes": `["."]`,
Vinh Tran9f6796a2022-08-16 13:10:31 -04003220 }),
3221 },
3222 })
3223}
3224
3225func TestCcLibraryWithNonAdjacentAidlFilegroup(t *testing.T) {
3226 runCcLibraryTestCase(t, Bp2buildTestCase{
3227 Description: "cc_library with non aidl filegroup",
3228 ModuleTypeUnderTest: "cc_library",
3229 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3230 Filesystem: map[string]string{
3231 "path/to/A/Android.bp": `
3232filegroup {
Vinh Tranfde57eb2022-08-29 17:46:58 -04003233 name: "A_aidl",
3234 srcs: ["aidl/A.aidl"],
3235 path: "aidl",
Vinh Tran9f6796a2022-08-16 13:10:31 -04003236}`,
3237 },
3238 Blueprint: `
3239cc_library {
Vinh Tranfde57eb2022-08-29 17:46:58 -04003240 name: "foo",
3241 srcs: [
3242 ":A_aidl",
3243 ],
Vinh Tran9f6796a2022-08-16 13:10:31 -04003244}`,
3245 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00003246 MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
Vinh Trane6842942023-04-28 11:21:25 -04003247 "local_includes": `["."]`,
3248 "deps": `["//path/to/A:A_aidl"]`,
Vinh Tran9f6796a2022-08-16 13:10:31 -04003249 }),
Alixe06d75b2022-08-31 18:28:19 +00003250 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Vinh Tranfde57eb2022-08-29 17:46:58 -04003251 "implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
3252 "local_includes": `["."]`,
3253 }),
Vinh Tranfde57eb2022-08-29 17:46:58 -04003254 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Liz Kammer84b0ecb2022-09-14 10:49:13 -04003255 "local_includes": `["."]`,
3256 "implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
Vinh Tranfde57eb2022-08-29 17:46:58 -04003257 }),
3258 },
3259 })
3260}
3261
3262func TestCcLibraryWithExportAidlHeaders(t *testing.T) {
Vinh Tran367d89d2023-04-28 11:21:25 -04003263 t.Parallel()
3264
3265 expectedBazelTargets := []string{
3266 MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
Vinh Trane6842942023-04-28 11:21:25 -04003267 "local_includes": `["."]`,
3268 "deps": `[":foo_aidl_library"]`,
Vinh Tran367d89d2023-04-28 11:21:25 -04003269 }),
3270 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
3271 "whole_archive_deps": `[":foo_cc_aidl_library"]`,
3272 "local_includes": `["."]`,
3273 }),
3274 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3275 "whole_archive_deps": `[":foo_cc_aidl_library"]`,
3276 "local_includes": `["."]`,
3277 }),
3278 }
3279 testCases := []struct {
3280 description string
3281 bp string
3282 expectedBazelTargets []string
3283 }{
3284 {
3285 description: "cc_library with aidl srcs and aidl.export_aidl_headers set",
3286 bp: `
3287 cc_library {
3288 name: "foo",
3289 srcs: [
3290 "Foo.aidl",
3291 ],
3292 aidl: {
3293 export_aidl_headers: true,
3294 }
3295 }`,
3296 expectedBazelTargets: append(
3297 expectedBazelTargets,
3298 MakeBazelTarget("aidl_library", "foo_aidl_library", AttrNameToString{
3299 "srcs": `["Foo.aidl"]`,
3300 })),
Vinh Tran9f6796a2022-08-16 13:10:31 -04003301 },
Vinh Tran367d89d2023-04-28 11:21:25 -04003302 {
3303 description: "cc_library with aidl.libs and aidl.export_aidl_headers set",
3304 bp: `
3305 aidl_library {
3306 name: "foo_aidl_library",
3307 srcs: ["Foo.aidl"],
3308 }
3309 cc_library {
3310 name: "foo",
3311 aidl: {
3312 libs: ["foo_aidl_library"],
3313 export_aidl_headers: true,
3314 }
3315 }`,
3316 expectedBazelTargets: append(
3317 expectedBazelTargets,
3318 MakeBazelTargetNoRestrictions("aidl_library", "foo_aidl_library", AttrNameToString{
3319 "srcs": `["Foo.aidl"]`,
3320 "tags": `["apex_available=//apex_available:anyapex"]`,
3321 }),
3322 ),
3323 },
3324 }
3325
3326 for _, testCase := range testCases {
3327 runCcLibraryTestCase(t, Bp2buildTestCase{
3328 Description: "cc_library with export aidl headers",
3329 ModuleTypeUnderTest: "cc_library",
3330 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3331 Blueprint: testCase.bp,
3332 ExpectedBazelTargets: testCase.expectedBazelTargets,
3333 })
3334 }
Vinh Tran9f6796a2022-08-16 13:10:31 -04003335}
Vinh Tran85fb07c2022-09-16 16:17:48 -04003336
3337func TestCcLibraryWithTargetApex(t *testing.T) {
3338 runCcLibraryTestCase(t, Bp2buildTestCase{
3339 Description: "cc_library with target.apex",
3340 ModuleTypeUnderTest: "cc_library",
3341 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3342 Blueprint: `
3343cc_library {
3344 name: "foo",
3345 shared_libs: ["bar", "baz"],
3346 static_libs: ["baz", "buh"],
3347 target: {
3348 apex: {
3349 exclude_shared_libs: ["bar"],
3350 exclude_static_libs: ["buh"],
3351 }
3352 }
3353}`,
3354 ExpectedBazelTargets: []string{
3355 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
3356 "implementation_deps": `[":baz__BP2BUILD__MISSING__DEP"] + select({
Liz Kammer748d7072023-01-25 12:07:43 -05003357 "//build/bazel/rules/apex:in_apex": [],
3358 "//conditions:default": [":buh__BP2BUILD__MISSING__DEP"],
Vinh Tran85fb07c2022-09-16 16:17:48 -04003359 })`,
3360 "implementation_dynamic_deps": `[":baz__BP2BUILD__MISSING__DEP"] + select({
Liz Kammer748d7072023-01-25 12:07:43 -05003361 "//build/bazel/rules/apex:in_apex": [],
3362 "//conditions:default": [":bar__BP2BUILD__MISSING__DEP"],
Vinh Tran85fb07c2022-09-16 16:17:48 -04003363 })`,
3364 "local_includes": `["."]`,
3365 }),
3366 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3367 "implementation_deps": `[":baz__BP2BUILD__MISSING__DEP"] + select({
Liz Kammer748d7072023-01-25 12:07:43 -05003368 "//build/bazel/rules/apex:in_apex": [],
3369 "//conditions:default": [":buh__BP2BUILD__MISSING__DEP"],
Vinh Tran85fb07c2022-09-16 16:17:48 -04003370 })`,
3371 "implementation_dynamic_deps": `[":baz__BP2BUILD__MISSING__DEP"] + select({
Liz Kammer748d7072023-01-25 12:07:43 -05003372 "//build/bazel/rules/apex:in_apex": [],
3373 "//conditions:default": [":bar__BP2BUILD__MISSING__DEP"],
Vinh Tran85fb07c2022-09-16 16:17:48 -04003374 })`,
3375 "local_includes": `["."]`,
3376 }),
3377 },
3378 })
3379}
3380
3381func TestCcLibraryWithTargetApexAndExportLibHeaders(t *testing.T) {
3382 runCcLibraryTestCase(t, Bp2buildTestCase{
3383 Description: "cc_library with target.apex and export_shared|static_lib_headers",
3384 ModuleTypeUnderTest: "cc_library",
3385 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3386 Blueprint: `
3387cc_library_static {
3388 name: "foo",
3389 shared_libs: ["bar", "baz"],
3390 static_libs: ["abc"],
3391 export_shared_lib_headers: ["baz"],
3392 export_static_lib_headers: ["abc"],
3393 target: {
3394 apex: {
3395 exclude_shared_libs: ["baz", "bar"],
3396 exclude_static_libs: ["abc"],
3397 }
3398 }
3399}`,
3400 ExpectedBazelTargets: []string{
3401 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
3402 "implementation_dynamic_deps": `select({
Liz Kammer748d7072023-01-25 12:07:43 -05003403 "//build/bazel/rules/apex:in_apex": [],
3404 "//conditions:default": [":bar__BP2BUILD__MISSING__DEP"],
Vinh Tran85fb07c2022-09-16 16:17:48 -04003405 })`,
3406 "dynamic_deps": `select({
Liz Kammer748d7072023-01-25 12:07:43 -05003407 "//build/bazel/rules/apex:in_apex": [],
3408 "//conditions:default": [":baz__BP2BUILD__MISSING__DEP"],
Vinh Tran85fb07c2022-09-16 16:17:48 -04003409 })`,
3410 "deps": `select({
Liz Kammer748d7072023-01-25 12:07:43 -05003411 "//build/bazel/rules/apex:in_apex": [],
3412 "//conditions:default": [":abc__BP2BUILD__MISSING__DEP"],
Vinh Tran85fb07c2022-09-16 16:17:48 -04003413 })`,
3414 "local_includes": `["."]`,
3415 }),
3416 },
3417 })
3418}
Trevor Radcliffecee4e052022-09-06 19:31:25 +00003419
3420func TestCcLibraryWithSyspropSrcs(t *testing.T) {
3421 runCcLibraryTestCase(t, Bp2buildTestCase{
3422 Description: "cc_library with sysprop sources",
3423 ModuleTypeUnderTest: "cc_library",
3424 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3425 Blueprint: `
3426cc_library {
3427 name: "foo",
3428 srcs: [
3429 "bar.sysprop",
3430 "baz.sysprop",
3431 "blah.cpp",
3432 ],
3433 min_sdk_version: "5",
3434}`,
3435 ExpectedBazelTargets: []string{
3436 MakeBazelTarget("sysprop_library", "foo_sysprop_library", AttrNameToString{
3437 "srcs": `[
3438 "bar.sysprop",
3439 "baz.sysprop",
3440 ]`,
3441 }),
3442 MakeBazelTarget("cc_sysprop_library_static", "foo_cc_sysprop_library_static", AttrNameToString{
3443 "dep": `":foo_sysprop_library"`,
3444 "min_sdk_version": `"5"`,
3445 }),
3446 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
3447 "srcs": `["blah.cpp"]`,
3448 "local_includes": `["."]`,
3449 "min_sdk_version": `"5"`,
3450 "whole_archive_deps": `[":foo_cc_sysprop_library_static"]`,
3451 }),
3452 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3453 "srcs": `["blah.cpp"]`,
3454 "local_includes": `["."]`,
3455 "min_sdk_version": `"5"`,
3456 "whole_archive_deps": `[":foo_cc_sysprop_library_static"]`,
3457 }),
3458 },
3459 })
3460}
3461
3462func TestCcLibraryWithSyspropSrcsSomeConfigs(t *testing.T) {
3463 runCcLibraryTestCase(t, Bp2buildTestCase{
3464 Description: "cc_library with sysprop sources in some configs but not others",
3465 ModuleTypeUnderTest: "cc_library",
3466 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3467 Blueprint: `
3468cc_library {
3469 name: "foo",
3470 host_supported: true,
3471 srcs: [
3472 "blah.cpp",
3473 ],
3474 target: {
3475 android: {
3476 srcs: ["bar.sysprop"],
3477 },
3478 },
3479 min_sdk_version: "5",
3480}`,
3481 ExpectedBazelTargets: []string{
3482 MakeBazelTargetNoRestrictions("sysprop_library", "foo_sysprop_library", AttrNameToString{
3483 "srcs": `select({
3484 "//build/bazel/platforms/os:android": ["bar.sysprop"],
3485 "//conditions:default": [],
3486 })`,
3487 }),
3488 MakeBazelTargetNoRestrictions("cc_sysprop_library_static", "foo_cc_sysprop_library_static", AttrNameToString{
3489 "dep": `":foo_sysprop_library"`,
3490 "min_sdk_version": `"5"`,
3491 }),
3492 MakeBazelTargetNoRestrictions("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
3493 "srcs": `["blah.cpp"]`,
3494 "local_includes": `["."]`,
3495 "min_sdk_version": `"5"`,
3496 "whole_archive_deps": `select({
3497 "//build/bazel/platforms/os:android": [":foo_cc_sysprop_library_static"],
3498 "//conditions:default": [],
3499 })`,
3500 }),
3501 MakeBazelTargetNoRestrictions("cc_library_shared", "foo", AttrNameToString{
3502 "srcs": `["blah.cpp"]`,
3503 "local_includes": `["."]`,
3504 "min_sdk_version": `"5"`,
3505 "whole_archive_deps": `select({
3506 "//build/bazel/platforms/os:android": [":foo_cc_sysprop_library_static"],
3507 "//conditions:default": [],
3508 })`,
3509 }),
3510 },
3511 })
3512}
Vinh Tran395a1e92022-09-16 18:27:29 -04003513
Sam Delmerico512437b2023-03-17 11:34:15 -04003514func TestCcLibraryWithAidlAndLibs(t *testing.T) {
Vinh Tran395a1e92022-09-16 18:27:29 -04003515 runCcLibraryTestCase(t, Bp2buildTestCase{
Sam Delmerico512437b2023-03-17 11:34:15 -04003516 Description: "cc_aidl_library depends on libs from parent cc_library_static",
Vinh Tran395a1e92022-09-16 18:27:29 -04003517 ModuleTypeUnderTest: "cc_library",
3518 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3519 Blueprint: `
3520cc_library_static {
Sam Delmerico512437b2023-03-17 11:34:15 -04003521 name: "foo",
3522 srcs: [
3523 "Foo.aidl",
3524 ],
3525 static_libs: [
3526 "bar-static",
3527 "baz-static",
3528 ],
Vinh Tran395a1e92022-09-16 18:27:29 -04003529 shared_libs: [
Sam Delmerico512437b2023-03-17 11:34:15 -04003530 "bar-shared",
3531 "baz-shared",
3532 ],
3533 export_static_lib_headers: [
3534 "baz-static",
Vinh Tran395a1e92022-09-16 18:27:29 -04003535 ],
3536 export_shared_lib_headers: [
Sam Delmerico512437b2023-03-17 11:34:15 -04003537 "baz-shared",
Vinh Tran395a1e92022-09-16 18:27:29 -04003538 ],
3539}` +
Sam Delmerico512437b2023-03-17 11:34:15 -04003540 simpleModuleDoNotConvertBp2build("cc_library_static", "bar-static") +
3541 simpleModuleDoNotConvertBp2build("cc_library_static", "baz-static") +
3542 simpleModuleDoNotConvertBp2build("cc_library", "bar-shared") +
3543 simpleModuleDoNotConvertBp2build("cc_library", "baz-shared"),
Vinh Tran395a1e92022-09-16 18:27:29 -04003544 ExpectedBazelTargets: []string{
3545 MakeBazelTarget("aidl_library", "foo_aidl_library", AttrNameToString{
3546 "srcs": `["Foo.aidl"]`,
3547 }),
3548 MakeBazelTarget("cc_aidl_library", "foo_cc_aidl_library", AttrNameToString{
Vinh Trane6842942023-04-28 11:21:25 -04003549 "local_includes": `["."]`,
3550 "deps": `[":foo_aidl_library"]`,
Sam Delmerico512437b2023-03-17 11:34:15 -04003551 "implementation_deps": `[
3552 ":baz-static",
3553 ":bar-static",
3554 ]`,
Vinh Tran395a1e92022-09-16 18:27:29 -04003555 "implementation_dynamic_deps": `[
Sam Delmerico512437b2023-03-17 11:34:15 -04003556 ":baz-shared",
3557 ":bar-shared",
Vinh Tran395a1e92022-09-16 18:27:29 -04003558 ]`,
3559 }),
3560 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
3561 "implementation_whole_archive_deps": `[":foo_cc_aidl_library"]`,
Sam Delmerico512437b2023-03-17 11:34:15 -04003562 "deps": `[":baz-static"]`,
3563 "implementation_deps": `[":bar-static"]`,
3564 "dynamic_deps": `[":baz-shared"]`,
3565 "implementation_dynamic_deps": `[":bar-shared"]`,
Vinh Tran395a1e92022-09-16 18:27:29 -04003566 "local_includes": `["."]`,
3567 }),
3568 },
3569 })
3570}
Sam Delmericoc9b8fbd2022-10-25 15:47:17 -04003571
3572func TestCcLibraryWithTidy(t *testing.T) {
3573 runCcLibraryTestCase(t, Bp2buildTestCase{
3574 Description: "cc_library uses tidy properties",
3575 ModuleTypeUnderTest: "cc_library",
3576 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3577 Blueprint: `
3578cc_library_static {
Sam Delmerico63f0c932023-03-14 14:05:28 -04003579 name: "foo",
3580 srcs: ["foo.cpp"],
3581}
3582cc_library_static {
3583 name: "foo-no-tidy",
3584 srcs: ["foo.cpp"],
3585 tidy: false,
3586}
3587cc_library_static {
3588 name: "foo-tidy",
3589 srcs: ["foo.cpp"],
Sam Delmericoc9b8fbd2022-10-25 15:47:17 -04003590 tidy: true,
3591 tidy_checks: ["check1", "check2"],
3592 tidy_checks_as_errors: ["check1error", "check2error"],
3593 tidy_disabled_srcs: ["bar.cpp"],
Sam Delmerico4c902d62022-11-02 14:17:15 -04003594 tidy_timeout_srcs: ["baz.cpp"],
Sam Delmericoc9b8fbd2022-10-25 15:47:17 -04003595}`,
3596 ExpectedBazelTargets: []string{
3597 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
3598 "local_includes": `["."]`,
3599 "srcs": `["foo.cpp"]`,
Sam Delmerico63f0c932023-03-14 14:05:28 -04003600 }),
3601 MakeBazelTarget("cc_library_static", "foo-no-tidy", AttrNameToString{
3602 "local_includes": `["."]`,
3603 "srcs": `["foo.cpp"]`,
3604 "tidy": `"never"`,
3605 }),
3606 MakeBazelTarget("cc_library_static", "foo-tidy", AttrNameToString{
3607 "local_includes": `["."]`,
3608 "srcs": `["foo.cpp"]`,
3609 "tidy": `"local"`,
Sam Delmericoc9b8fbd2022-10-25 15:47:17 -04003610 "tidy_checks": `[
3611 "check1",
3612 "check2",
3613 ]`,
3614 "tidy_checks_as_errors": `[
3615 "check1error",
3616 "check2error",
3617 ]`,
3618 "tidy_disabled_srcs": `["bar.cpp"]`,
Sam Delmerico4c902d62022-11-02 14:17:15 -04003619 "tidy_timeout_srcs": `["baz.cpp"]`,
Sam Delmericoc9b8fbd2022-10-25 15:47:17 -04003620 }),
3621 },
3622 })
3623}
Yu Liu56ccb1a2022-11-12 10:47:07 -08003624
Vinh Tran99270ea2022-11-28 11:15:23 -05003625func TestCcLibraryWithAfdoEnabled(t *testing.T) {
3626 bp := `
3627cc_library {
3628 name: "foo",
3629 afdo: true,
3630 include_build_directory: false,
3631}`
3632
3633 // TODO(b/260714900): Add test case for arch-specific afdo profile
3634 testCases := []struct {
3635 description string
3636 filesystem map[string]string
3637 expectedBazelTargets []string
3638 }{
3639 {
3640 description: "cc_library with afdo enabled and existing profile",
Vinh Tranbc9c8b42022-12-09 12:03:52 -05003641 filesystem: map[string]string{
3642 "vendor/google_data/pgo_profile/sampling/BUILD": "",
3643 "vendor/google_data/pgo_profile/sampling/foo.afdo": "",
3644 },
Vinh Tran99270ea2022-11-28 11:15:23 -05003645 expectedBazelTargets: []string{
3646 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
3647 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3648 "fdo_profile": `"//vendor/google_data/pgo_profile/sampling:foo"`,
3649 }),
3650 },
3651 },
3652 {
3653 description: "cc_library with afdo enabled and existing profile in AOSP",
Vinh Tranbc9c8b42022-12-09 12:03:52 -05003654 filesystem: map[string]string{
3655 "toolchain/pgo-profiles/sampling/BUILD": "",
3656 "toolchain/pgo-profiles/sampling/foo.afdo": "",
3657 },
Vinh Tran99270ea2022-11-28 11:15:23 -05003658 expectedBazelTargets: []string{
3659 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
3660 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3661 "fdo_profile": `"//toolchain/pgo-profiles/sampling:foo"`,
3662 }),
3663 },
3664 },
3665 {
3666 description: "cc_library with afdo enabled but profile filename doesn't match with module name",
Vinh Tranbc9c8b42022-12-09 12:03:52 -05003667 filesystem: map[string]string{
3668 "toolchain/pgo-profiles/sampling/BUILD": "",
3669 "toolchain/pgo-profiles/sampling/bar.afdo": "",
3670 },
Vinh Tran99270ea2022-11-28 11:15:23 -05003671 expectedBazelTargets: []string{
3672 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
3673 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{}),
3674 },
3675 },
3676 {
3677 description: "cc_library with afdo enabled but profile doesn't exist",
3678 expectedBazelTargets: []string{
3679 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
3680 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{}),
3681 },
3682 },
Vinh Tranbc9c8b42022-12-09 12:03:52 -05003683 {
3684 description: "cc_library with afdo enabled and existing profile but BUILD file doesn't exist",
3685 filesystem: map[string]string{
3686 "vendor/google_data/pgo_profile/sampling/foo.afdo": "",
3687 },
3688 expectedBazelTargets: []string{
3689 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
3690 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{}),
3691 },
3692 },
Vinh Tran99270ea2022-11-28 11:15:23 -05003693 }
3694 for _, testCase := range testCases {
3695 t.Run(testCase.description, func(t *testing.T) {
3696 runCcLibraryTestCase(t, Bp2buildTestCase{
3697 ExpectedBazelTargets: testCase.expectedBazelTargets,
3698 ModuleTypeUnderTest: "cc_library",
3699 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3700 Description: testCase.description,
3701 Blueprint: binaryReplacer.Replace(bp),
3702 Filesystem: testCase.filesystem,
3703 })
3704 })
3705 }
3706}
3707
Yu Liu56ccb1a2022-11-12 10:47:07 -08003708func TestCcLibraryHeaderAbiChecker(t *testing.T) {
3709 runCcLibraryTestCase(t, Bp2buildTestCase{
3710 Description: "cc_library with header abi checker",
3711 ModuleTypeUnderTest: "cc_library",
3712 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3713 Blueprint: `cc_library {
3714 name: "foo",
3715 header_abi_checker: {
3716 enabled: true,
3717 symbol_file: "a.map.txt",
3718 exclude_symbol_versions: [
3719 "29",
3720 "30",
3721 ],
3722 exclude_symbol_tags: [
3723 "tag1",
3724 "tag2",
3725 ],
3726 check_all_apis: true,
3727 diff_flags: ["-allow-adding-removing-weak-symbols"],
3728 },
3729 include_build_directory: false,
3730}`,
3731 ExpectedBazelTargets: []string{
3732 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{}),
3733 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3734 "abi_checker_enabled": `True`,
3735 "abi_checker_symbol_file": `"a.map.txt"`,
3736 "abi_checker_exclude_symbol_versions": `[
3737 "29",
3738 "30",
3739 ]`,
3740 "abi_checker_exclude_symbol_tags": `[
3741 "tag1",
3742 "tag2",
3743 ]`,
3744 "abi_checker_check_all_apis": `True`,
3745 "abi_checker_diff_flags": `["-allow-adding-removing-weak-symbols"]`,
3746 }),
3747 },
3748 })
3749}
Jingwen Chenc4c34e12022-11-29 12:07:45 +00003750
3751func TestCcLibraryApexAvailable(t *testing.T) {
3752 runCcLibraryTestCase(t, Bp2buildTestCase{
3753 Description: "cc_library apex_available converted to tags",
3754 ModuleTypeUnderTest: "cc_library",
3755 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3756 Blueprint: soongCcLibraryPreamble + `
3757cc_library {
3758 name: "a",
3759 srcs: ["a.cpp"],
3760 apex_available: ["com.android.foo"],
3761}
3762`,
3763 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
3764 "tags": `["apex_available=com.android.foo"]`,
3765 "srcs": `["a.cpp"]`,
3766 "local_includes": `["."]`,
3767 }),
3768 },
3769 )
3770}
3771
3772func TestCcLibraryApexAvailableMultiple(t *testing.T) {
3773 runCcLibraryTestCase(t, Bp2buildTestCase{
3774 Description: "cc_library apex_available converted to multiple tags",
3775 ModuleTypeUnderTest: "cc_library",
3776 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3777 Blueprint: soongCcLibraryPreamble + `
3778cc_library {
3779 name: "a",
3780 srcs: ["a.cpp"],
3781 apex_available: ["com.android.foo", "//apex_available:platform", "com.android.bar"],
3782}
3783`,
3784 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
3785 "tags": `[
3786 "apex_available=com.android.foo",
3787 "apex_available=//apex_available:platform",
3788 "apex_available=com.android.bar",
3789 ]`,
3790 "srcs": `["a.cpp"]`,
3791 "local_includes": `["."]`,
3792 }),
3793 },
3794 )
3795}
Zi Wang0f828442022-12-28 11:18:11 -08003796
3797// Export_include_dirs and Export_system_include_dirs have "variant_prepend" tag.
3798// In bp2build output, variant info(select) should go before general info.
3799// Internal order of the property should be unchanged. (e.g. ["eid1", "eid2"])
3800func TestCcLibraryVariantPrependPropOrder(t *testing.T) {
3801 runCcLibraryTestCase(t, Bp2buildTestCase{
3802 Description: "cc_library variant prepend properties order",
3803 ModuleTypeUnderTest: "cc_library",
3804 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3805 Blueprint: soongCcLibraryPreamble + `
3806cc_library {
3807 name: "a",
3808 srcs: ["a.cpp"],
3809 export_include_dirs: ["eid1", "eid2"],
3810 export_system_include_dirs: ["esid1", "esid2"],
3811 target: {
3812 android: {
3813 export_include_dirs: ["android_eid1", "android_eid2"],
3814 export_system_include_dirs: ["android_esid1", "android_esid2"],
3815 },
3816 android_arm: {
3817 export_include_dirs: ["android_arm_eid1", "android_arm_eid2"],
3818 export_system_include_dirs: ["android_arm_esid1", "android_arm_esid2"],
3819 },
3820 linux: {
3821 export_include_dirs: ["linux_eid1", "linux_eid2"],
3822 export_system_include_dirs: ["linux_esid1", "linux_esid2"],
3823 },
3824 },
3825 multilib: {
3826 lib32: {
3827 export_include_dirs: ["lib32_eid1", "lib32_eid2"],
3828 export_system_include_dirs: ["lib32_esid1", "lib32_esid2"],
3829 },
3830 },
3831 arch: {
3832 arm: {
3833 export_include_dirs: ["arm_eid1", "arm_eid2"],
3834 export_system_include_dirs: ["arm_esid1", "arm_esid2"],
3835 },
3836 }
3837}
3838`,
3839 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
3840 "export_includes": `select({
3841 "//build/bazel/platforms/os_arch:android_arm": [
3842 "android_arm_eid1",
3843 "android_arm_eid2",
3844 ],
3845 "//conditions:default": [],
3846 }) + select({
3847 "//build/bazel/platforms/os:android": [
3848 "android_eid1",
3849 "android_eid2",
3850 "linux_eid1",
3851 "linux_eid2",
3852 ],
3853 "//build/bazel/platforms/os:linux_bionic": [
3854 "linux_eid1",
3855 "linux_eid2",
3856 ],
3857 "//build/bazel/platforms/os:linux_glibc": [
3858 "linux_eid1",
3859 "linux_eid2",
3860 ],
3861 "//build/bazel/platforms/os:linux_musl": [
3862 "linux_eid1",
3863 "linux_eid2",
3864 ],
3865 "//conditions:default": [],
3866 }) + select({
3867 "//build/bazel/platforms/arch:arm": [
3868 "lib32_eid1",
3869 "lib32_eid2",
3870 "arm_eid1",
3871 "arm_eid2",
3872 ],
3873 "//build/bazel/platforms/arch:x86": [
3874 "lib32_eid1",
3875 "lib32_eid2",
3876 ],
3877 "//conditions:default": [],
3878 }) + [
3879 "eid1",
3880 "eid2",
3881 ]`,
3882 "export_system_includes": `select({
3883 "//build/bazel/platforms/os_arch:android_arm": [
3884 "android_arm_esid1",
3885 "android_arm_esid2",
3886 ],
3887 "//conditions:default": [],
3888 }) + select({
3889 "//build/bazel/platforms/os:android": [
3890 "android_esid1",
3891 "android_esid2",
3892 "linux_esid1",
3893 "linux_esid2",
3894 ],
3895 "//build/bazel/platforms/os:linux_bionic": [
3896 "linux_esid1",
3897 "linux_esid2",
3898 ],
3899 "//build/bazel/platforms/os:linux_glibc": [
3900 "linux_esid1",
3901 "linux_esid2",
3902 ],
3903 "//build/bazel/platforms/os:linux_musl": [
3904 "linux_esid1",
3905 "linux_esid2",
3906 ],
3907 "//conditions:default": [],
3908 }) + select({
3909 "//build/bazel/platforms/arch:arm": [
3910 "lib32_esid1",
3911 "lib32_esid2",
3912 "arm_esid1",
3913 "arm_esid2",
3914 ],
3915 "//build/bazel/platforms/arch:x86": [
3916 "lib32_esid1",
3917 "lib32_esid2",
3918 ],
3919 "//conditions:default": [],
3920 }) + [
3921 "esid1",
3922 "esid2",
3923 ]`,
3924 "srcs": `["a.cpp"]`,
3925 "local_includes": `["."]`,
3926 "target_compatible_with": `["//build/bazel/platforms/os:android"]`,
3927 }),
3928 },
3929 )
3930}
Trevor Radcliffedb7e0262022-10-28 16:48:18 +00003931
3932func TestCcLibraryWithIntegerOverflowProperty(t *testing.T) {
3933 runCcLibraryTestCase(t, Bp2buildTestCase{
3934 Description: "cc_library has correct features when integer_overflow property is provided",
3935 ModuleTypeUnderTest: "cc_library",
3936 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3937 Blueprint: `
3938cc_library {
3939 name: "foo",
3940 sanitize: {
3941 integer_overflow: true,
3942 },
3943}
3944`,
3945 ExpectedBazelTargets: []string{
3946 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
3947 "features": `["ubsan_integer_overflow"]`,
3948 "local_includes": `["."]`,
3949 }),
3950 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3951 "features": `["ubsan_integer_overflow"]`,
3952 "local_includes": `["."]`,
3953 }),
3954 },
3955 })
3956}
3957
3958func TestCcLibraryWithMiscUndefinedProperty(t *testing.T) {
3959 runCcLibraryTestCase(t, Bp2buildTestCase{
3960 Description: "cc_library has correct features when misc_undefined property is provided",
3961 ModuleTypeUnderTest: "cc_library",
3962 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3963 Blueprint: `
3964cc_library {
3965 name: "foo",
3966 sanitize: {
3967 misc_undefined: ["undefined", "nullability"],
3968 },
3969}
3970`,
3971 ExpectedBazelTargets: []string{
3972 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
3973 "features": `[
3974 "ubsan_undefined",
3975 "ubsan_nullability",
3976 ]`,
3977 "local_includes": `["."]`,
3978 }),
3979 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
3980 "features": `[
3981 "ubsan_undefined",
3982 "ubsan_nullability",
3983 ]`,
3984 "local_includes": `["."]`,
3985 }),
3986 },
3987 })
3988}
3989
Trevor Radcliffeded095c2023-06-12 19:18:28 +00003990func TestCcLibraryWithSanitizerBlocklist(t *testing.T) {
3991 runCcLibraryTestCase(t, Bp2buildTestCase{
3992 Description: "cc_library has correct feature when sanitize.blocklist is provided",
3993 ModuleTypeUnderTest: "cc_library",
3994 ModuleTypeUnderTestFactory: cc.LibraryFactory,
3995 Blueprint: `
3996cc_library {
3997 name: "foo",
3998 sanitize: {
3999 blocklist: "foo_blocklist.txt",
4000 },
4001}
4002`,
4003 ExpectedBazelTargets: []string{
4004 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Trevor Radcliffed9b7f172023-08-09 22:21:38 +00004005 "copts": `select({
4006 "//build/bazel/rules/cc:sanitizers_enabled": ["-fsanitize-ignorelist=$(location foo_blocklist.txt)"],
4007 "//conditions:default": [],
4008 })`,
4009 "additional_compiler_inputs": `select({
4010 "//build/bazel/rules/cc:sanitizers_enabled": [":foo_blocklist.txt"],
4011 "//conditions:default": [],
4012 })`,
Trevor Radcliffeded095c2023-06-12 19:18:28 +00004013 "local_includes": `["."]`,
4014 }),
4015 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Trevor Radcliffed9b7f172023-08-09 22:21:38 +00004016 "copts": `select({
4017 "//build/bazel/rules/cc:sanitizers_enabled": ["-fsanitize-ignorelist=$(location foo_blocklist.txt)"],
4018 "//conditions:default": [],
4019 })`,
4020 "additional_compiler_inputs": `select({
4021 "//build/bazel/rules/cc:sanitizers_enabled": [":foo_blocklist.txt"],
4022 "//conditions:default": [],
4023 })`,
Trevor Radcliffeded095c2023-06-12 19:18:28 +00004024 "local_includes": `["."]`,
4025 }),
4026 },
4027 })
4028}
4029
Trevor Radcliffedb7e0262022-10-28 16:48:18 +00004030func TestCcLibraryWithUBSanPropertiesArchSpecific(t *testing.T) {
4031 runCcLibraryTestCase(t, Bp2buildTestCase{
4032 Description: "cc_library has correct feature select when UBSan props are specified in arch specific blocks",
4033 ModuleTypeUnderTest: "cc_library",
4034 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4035 Blueprint: `
4036cc_library {
4037 name: "foo",
4038 sanitize: {
4039 misc_undefined: ["undefined", "nullability"],
4040 },
4041 target: {
4042 android: {
4043 sanitize: {
4044 misc_undefined: ["alignment"],
4045 },
4046 },
4047 linux_glibc: {
4048 sanitize: {
4049 integer_overflow: true,
4050 },
4051 },
4052 },
4053}
4054`,
4055 ExpectedBazelTargets: []string{
4056 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4057 "features": `[
4058 "ubsan_undefined",
4059 "ubsan_nullability",
4060 ] + select({
4061 "//build/bazel/platforms/os:android": ["ubsan_alignment"],
4062 "//build/bazel/platforms/os:linux_glibc": ["ubsan_integer_overflow"],
4063 "//conditions:default": [],
4064 })`,
4065 "local_includes": `["."]`,
4066 }),
4067 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4068 "features": `[
4069 "ubsan_undefined",
4070 "ubsan_nullability",
4071 ] + select({
4072 "//build/bazel/platforms/os:android": ["ubsan_alignment"],
4073 "//build/bazel/platforms/os:linux_glibc": ["ubsan_integer_overflow"],
4074 "//conditions:default": [],
4075 })`,
4076 "local_includes": `["."]`,
4077 }),
4078 },
4079 })
4080}
Yu Liu10174ff2023-02-21 12:05:26 -08004081
4082func TestCcLibraryInApexWithStubSharedLibs(t *testing.T) {
4083 runCcLibrarySharedTestCase(t, Bp2buildTestCase{
4084 Description: "cc_library with in apex with stub shared_libs and export_shared_lib_headers",
4085 ModuleTypeUnderTest: "cc_library",
4086 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4087 Blueprint: `
4088cc_library {
4089 name: "barlib",
4090 stubs: { symbol_file: "bar.map.txt", versions: ["28", "29", "current"] },
4091 bazel_module: { bp2build_available: false },
Spandan Das6d4d9da2023-04-18 06:20:40 +00004092 apex_available: ["//apex_available:platform",],
Yu Liu10174ff2023-02-21 12:05:26 -08004093}
4094cc_library {
4095 name: "bazlib",
4096 stubs: { symbol_file: "bar.map.txt", versions: ["28", "29", "current"] },
4097 bazel_module: { bp2build_available: false },
Spandan Das6d4d9da2023-04-18 06:20:40 +00004098 apex_available: ["//apex_available:platform",],
Yu Liu10174ff2023-02-21 12:05:26 -08004099}
4100cc_library {
4101 name: "foo",
4102 shared_libs: ["barlib", "bazlib"],
4103 export_shared_lib_headers: ["bazlib"],
4104 apex_available: [
Spandan Das6d4d9da2023-04-18 06:20:40 +00004105 "//apex_available:platform",
Yu Liu10174ff2023-02-21 12:05:26 -08004106 ],
4107}`,
4108 ExpectedBazelTargets: []string{
4109 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
Spandan Das6d4d9da2023-04-18 06:20:40 +00004110 "implementation_dynamic_deps": `[":barlib"]`,
4111 "dynamic_deps": `[":bazlib"]`,
4112 "local_includes": `["."]`,
4113 "tags": `["apex_available=//apex_available:platform"]`,
Yu Liu10174ff2023-02-21 12:05:26 -08004114 }),
4115 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
Spandan Das6d4d9da2023-04-18 06:20:40 +00004116 "implementation_dynamic_deps": `[":barlib"]`,
4117 "dynamic_deps": `[":bazlib"]`,
4118 "local_includes": `["."]`,
4119 "tags": `["apex_available=//apex_available:platform"]`,
Yu Liu10174ff2023-02-21 12:05:26 -08004120 }),
4121 },
4122 })
4123}
Trevor Radcliffe56b1a2b2023-02-06 21:58:30 +00004124
4125func TestCcLibraryWithThinLto(t *testing.T) {
4126 runCcLibraryTestCase(t, Bp2buildTestCase{
4127 Description: "cc_library has correct features when thin LTO is enabled",
4128 ModuleTypeUnderTest: "cc_library",
4129 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4130 Blueprint: `
4131cc_library {
4132 name: "foo",
4133 lto: {
4134 thin: true,
4135 },
4136}`,
4137 ExpectedBazelTargets: []string{
4138 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4139 "features": `["android_thin_lto"]`,
4140 "local_includes": `["."]`,
4141 }),
4142 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4143 "features": `["android_thin_lto"]`,
4144 "local_includes": `["."]`,
4145 }),
4146 },
4147 })
4148}
4149
4150func TestCcLibraryWithLtoNever(t *testing.T) {
4151 runCcLibraryTestCase(t, Bp2buildTestCase{
4152 Description: "cc_library has correct features when LTO is explicitly disabled",
4153 ModuleTypeUnderTest: "cc_library",
4154 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4155 Blueprint: `
4156cc_library {
4157 name: "foo",
4158 lto: {
4159 never: true,
4160 },
4161}`,
4162 ExpectedBazelTargets: []string{
4163 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4164 "features": `["-android_thin_lto"]`,
4165 "local_includes": `["."]`,
4166 }),
4167 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4168 "features": `["-android_thin_lto"]`,
4169 "local_includes": `["."]`,
4170 }),
4171 },
4172 })
4173}
4174
4175func TestCcLibraryWithThinLtoArchSpecific(t *testing.T) {
4176 runCcLibraryTestCase(t, Bp2buildTestCase{
4177 Description: "cc_library has correct features when LTO differs across arch and os variants",
4178 ModuleTypeUnderTest: "cc_library",
4179 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4180 Blueprint: `
4181cc_library {
4182 name: "foo",
4183 target: {
4184 android: {
4185 lto: {
4186 thin: true,
4187 },
4188 },
4189 },
4190 arch: {
4191 riscv64: {
4192 lto: {
4193 thin: false,
4194 },
4195 },
4196 },
4197}`,
4198 ExpectedBazelTargets: []string{
4199 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4200 "local_includes": `["."]`,
4201 "features": `select({
4202 "//build/bazel/platforms/os_arch:android_arm": ["android_thin_lto"],
4203 "//build/bazel/platforms/os_arch:android_arm64": ["android_thin_lto"],
4204 "//build/bazel/platforms/os_arch:android_riscv64": ["-android_thin_lto"],
4205 "//build/bazel/platforms/os_arch:android_x86": ["android_thin_lto"],
4206 "//build/bazel/platforms/os_arch:android_x86_64": ["android_thin_lto"],
4207 "//conditions:default": [],
4208 })`}),
4209 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4210 "local_includes": `["."]`,
4211 "features": `select({
4212 "//build/bazel/platforms/os_arch:android_arm": ["android_thin_lto"],
4213 "//build/bazel/platforms/os_arch:android_arm64": ["android_thin_lto"],
4214 "//build/bazel/platforms/os_arch:android_riscv64": ["-android_thin_lto"],
4215 "//build/bazel/platforms/os_arch:android_x86": ["android_thin_lto"],
4216 "//build/bazel/platforms/os_arch:android_x86_64": ["android_thin_lto"],
4217 "//conditions:default": [],
4218 })`}),
4219 },
4220 })
4221}
4222
4223func TestCcLibraryWithThinLtoDisabledDefaultEnabledVariant(t *testing.T) {
4224 runCcLibraryTestCase(t, Bp2buildTestCase{
4225 Description: "cc_library has correct features when LTO disabled by default but enabled on a particular variant",
4226 ModuleTypeUnderTest: "cc_library",
4227 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4228 Blueprint: `
4229cc_library {
4230 name: "foo",
4231 lto: {
4232 never: true,
4233 },
4234 target: {
4235 android: {
4236 lto: {
4237 thin: true,
4238 never: false,
4239 },
4240 },
4241 },
4242}`,
4243 ExpectedBazelTargets: []string{
4244 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4245 "local_includes": `["."]`,
4246 "features": `select({
4247 "//build/bazel/platforms/os:android": ["android_thin_lto"],
4248 "//conditions:default": ["-android_thin_lto"],
4249 })`,
4250 }),
4251 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4252 "local_includes": `["."]`,
4253 "features": `select({
4254 "//build/bazel/platforms/os:android": ["android_thin_lto"],
4255 "//conditions:default": ["-android_thin_lto"],
4256 })`,
4257 }),
4258 },
4259 })
4260}
4261
4262func TestCcLibraryWithThinLtoWholeProgramVtables(t *testing.T) {
4263 runCcLibraryTestCase(t, Bp2buildTestCase{
4264 Description: "cc_library has correct features when thin LTO is enabled with whole_program_vtables",
4265 ModuleTypeUnderTest: "cc_library",
4266 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4267 Blueprint: `
4268cc_library {
4269 name: "foo",
4270 lto: {
4271 thin: true,
4272 },
4273 whole_program_vtables: true,
4274}`,
4275 ExpectedBazelTargets: []string{
4276 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4277 "features": `[
4278 "android_thin_lto",
4279 "android_thin_lto_whole_program_vtables",
4280 ]`,
4281 "local_includes": `["."]`,
4282 }),
4283 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4284 "features": `[
4285 "android_thin_lto",
4286 "android_thin_lto_whole_program_vtables",
4287 ]`,
4288 "local_includes": `["."]`,
4289 }),
4290 },
4291 })
4292}
Trevor Radcliffea8b44162023-04-14 18:25:24 +00004293
4294func TestCcLibraryHiddenVisibilityConvertedToFeature(t *testing.T) {
4295 runCcLibraryTestCase(t, Bp2buildTestCase{
4296 Description: "cc_library changes hidden visibility flag to feature",
4297 ModuleTypeUnderTest: "cc_library",
4298 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4299 Blueprint: `
4300cc_library {
4301 name: "foo",
4302 cflags: ["-fvisibility=hidden"],
4303}`,
4304 ExpectedBazelTargets: []string{
4305 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4306 "features": `["visibility_hidden"]`,
4307 "local_includes": `["."]`,
4308 }),
4309 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4310 "features": `["visibility_hidden"]`,
4311 "local_includes": `["."]`,
4312 }),
4313 },
4314 })
4315}
4316
4317func TestCcLibraryHiddenVisibilityConvertedToFeatureSharedSpecific(t *testing.T) {
4318 runCcLibraryTestCase(t, Bp2buildTestCase{
4319 Description: "cc_library changes hidden visibility flag to feature when specific to shared variant",
4320 ModuleTypeUnderTest: "cc_library",
4321 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4322 Blueprint: `
4323cc_library {
4324 name: "foo",
4325 shared: {
4326 cflags: ["-fvisibility=hidden"],
4327 },
4328}`,
4329 ExpectedBazelTargets: []string{
4330 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4331 "local_includes": `["."]`,
4332 }),
4333 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4334 "features": `["visibility_hidden"]`,
4335 "local_includes": `["."]`,
4336 }),
4337 },
4338 })
4339}
4340
4341func TestCcLibraryHiddenVisibilityConvertedToFeatureStaticSpecific(t *testing.T) {
4342 runCcLibraryTestCase(t, Bp2buildTestCase{
4343 Description: "cc_library changes hidden visibility flag to feature when specific to static variant",
4344 ModuleTypeUnderTest: "cc_library",
4345 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4346 Blueprint: `
4347cc_library {
4348 name: "foo",
4349 static: {
4350 cflags: ["-fvisibility=hidden"],
4351 },
4352}`,
4353 ExpectedBazelTargets: []string{
4354 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4355 "features": `["visibility_hidden"]`,
4356 "local_includes": `["."]`,
4357 }),
4358 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4359 "local_includes": `["."]`,
4360 }),
4361 },
4362 })
4363}
4364
4365func TestCcLibraryHiddenVisibilityConvertedToFeatureOsSpecific(t *testing.T) {
4366 runCcLibraryTestCase(t, Bp2buildTestCase{
4367 Description: "cc_library changes hidden visibility flag to feature when specific to an os",
4368 ModuleTypeUnderTest: "cc_library",
4369 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4370 Blueprint: `
4371cc_library {
4372 name: "foo",
4373 target: {
4374 android: {
4375 cflags: ["-fvisibility=hidden"],
4376 },
4377 },
4378}`,
4379 ExpectedBazelTargets: []string{
4380 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4381 "features": `select({
4382 "//build/bazel/platforms/os:android": ["visibility_hidden"],
4383 "//conditions:default": [],
4384 })`,
4385 "local_includes": `["."]`,
4386 }),
4387 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4388 "features": `select({
4389 "//build/bazel/platforms/os:android": ["visibility_hidden"],
4390 "//conditions:default": [],
4391 })`,
4392 "local_includes": `["."]`,
4393 }),
4394 },
4395 })
4396}
Spandan Das4242f102023-04-19 22:31:54 +00004397
4398// Test that a config_setting specific to an apex is created by cc_library.
4399func TestCcLibraryCreatesInApexConfigSetting(t *testing.T) {
4400 runCcLibraryTestCase(t, Bp2buildTestCase{
4401 Description: "cc_library creates a config_setting for each apex in apex_available",
4402 ModuleTypeUnderTest: "cc_library",
4403 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4404 Dir: "build/bazel/rules/apex",
4405 Blueprint: `
4406cc_library {
4407 name: "foo",
4408 apex_available: [
4409 "//apex_available:platform", // This will be skipped, since it is equivalent to //build/bazel/rules/apex:android-non_apex
4410 "myapex"
4411 ],
4412}`,
4413 ExpectedBazelTargets: []string{
4414 MakeBazelTargetNoRestrictions(
4415 "config_setting",
Spandan Das9cad90f2023-05-04 17:15:44 +00004416 "myapex",
Spandan Das4242f102023-04-19 22:31:54 +00004417 AttrNameToString{
4418 "flag_values": `{
Spandan Das9cad90f2023-05-04 17:15:44 +00004419 "//build/bazel/rules/apex:api_domain": "myapex",
Spandan Das4242f102023-04-19 22:31:54 +00004420 }`,
Spandan Das9cad90f2023-05-04 17:15:44 +00004421 "constraint_values": `["//build/bazel/platforms/os:android"]`,
Spandan Das4242f102023-04-19 22:31:54 +00004422 },
4423 ),
4424 },
4425 })
4426}
Yu Liu93893ba2023-05-01 13:49:52 -07004427
4428func TestCcLibraryCppFlagsInProductVariables(t *testing.T) {
4429 runCcLibraryTestCase(t, Bp2buildTestCase{
4430 Description: "cc_library cppflags in product variables",
4431 ModuleTypeUnderTest: "cc_library",
4432 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4433 Blueprint: soongCcLibraryPreamble + `cc_library {
4434 name: "a",
4435 srcs: ["a.cpp"],
4436 cppflags: [
4437 "-Wextra",
4438 "-DDEBUG_ONLY_CODE=0",
4439 ],
4440 product_variables: {
4441 eng: {
4442 cppflags: [
4443 "-UDEBUG_ONLY_CODE",
4444 "-DDEBUG_ONLY_CODE=1",
4445 ],
4446 },
4447 },
4448 include_build_directory: false,
4449}
4450`,
4451 ExpectedBazelTargets: makeCcLibraryTargets("a", AttrNameToString{
4452 "cppflags": `[
4453 "-Wextra",
4454 "-DDEBUG_ONLY_CODE=0",
4455 ] + select({
Cole Faust87c0c332023-07-31 12:10:12 -07004456 "//build/bazel/product_config/config_settings:eng": [
Yu Liu93893ba2023-05-01 13:49:52 -07004457 "-UDEBUG_ONLY_CODE",
4458 "-DDEBUG_ONLY_CODE=1",
4459 ],
4460 "//conditions:default": [],
4461 })`,
4462 "srcs": `["a.cpp"]`,
4463 }),
4464 },
4465 )
4466}
Spandan Dasdf4c2132023-05-09 23:58:52 +00004467
4468func TestCcLibraryYaccConversion(t *testing.T) {
4469 runCcLibraryTestCase(t, Bp2buildTestCase{
4470 Description: "cc_library is built from .y/.yy files",
4471 ModuleTypeUnderTest: "cc_library",
4472 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4473 Blueprint: soongCcLibraryPreamble + `cc_library {
4474 name: "a",
4475 srcs: [
4476 "a.cpp",
4477 "a.yy",
4478 ],
4479 shared_libs: ["sharedlib"],
4480 static_libs: ["staticlib"],
4481 yacc: {
4482 flags: ["someYaccFlag"],
4483 gen_location_hh: true,
4484 gen_position_hh: true,
4485 },
4486}
4487cc_library_static {
4488 name: "staticlib",
4489 bazel_module: { bp2build_available: false },
4490}
4491cc_library {
4492 name: "sharedlib",
4493 bazel_module: { bp2build_available: false },
4494}
4495`,
4496 ExpectedBazelTargets: []string{
4497 MakeBazelTarget("cc_yacc_static_library", "a_yacc", AttrNameToString{
4498 "src": `"a.yy"`,
4499 "implementation_deps": `[":staticlib"]`,
4500 "implementation_dynamic_deps": `[":sharedlib"]`,
4501 "flags": `["someYaccFlag"]`,
4502 "gen_location_hh": "True",
4503 "gen_position_hh": "True",
4504 "local_includes": `["."]`,
4505 }),
4506 MakeBazelTarget("cc_library_shared", "a", AttrNameToString{
4507 "srcs": `["a.cpp"]`,
4508 "implementation_deps": `[":staticlib"]`,
4509 "implementation_dynamic_deps": `[":sharedlib"]`,
4510 "implementation_whole_archive_deps": `[":a_yacc"]`,
4511 "local_includes": `["."]`,
4512 }),
4513 MakeBazelTarget("cc_library_static", "a_bp2build_cc_library_static", AttrNameToString{
4514 "srcs": `["a.cpp"]`,
4515 "implementation_deps": `[":staticlib"]`,
4516 "implementation_dynamic_deps": `[":sharedlib"]`,
4517 "implementation_whole_archive_deps": `[":a_yacc"]`,
4518 "local_includes": `["."]`,
4519 }),
4520 },
4521 })
4522}
Spandan Dasfb04c412023-05-15 18:35:36 +00004523
4524func TestCcLibraryHostLdLibs(t *testing.T) {
4525 runCcLibraryTestCase(t, Bp2buildTestCase{
4526 Description: "cc_binary linker flags for host_ldlibs",
4527 ModuleTypeUnderTest: "cc_binary",
4528 ModuleTypeUnderTestFactory: cc.BinaryFactory,
4529 Blueprint: soongCcLibraryPreamble + `cc_binary {
4530 name: "a",
4531 host_supported: true,
4532 ldflags: ["-lcommon"],
4533 target: {
4534 linux: {
4535 host_ldlibs: [
4536 "-llinux",
4537 ],
4538 },
4539 darwin: {
4540 ldflags: ["-ldarwinadditional"],
4541 host_ldlibs: [
4542 "-ldarwin",
4543 ],
4544 },
4545 windows: {
4546 host_ldlibs: [
4547 "-lwindows",
4548 ],
4549 },
4550 },
4551}
4552`,
4553 ExpectedBazelTargets: []string{
4554 MakeBazelTargetNoRestrictions("cc_binary", "a", AttrNameToString{
4555 "linkopts": `["-lcommon"] + select({
4556 "//build/bazel/platforms/os:darwin": [
4557 "-ldarwinadditional",
4558 "-ldarwin",
4559 ],
4560 "//build/bazel/platforms/os:linux_glibc": ["-llinux"],
4561 "//build/bazel/platforms/os:windows": ["-lwindows"],
4562 "//conditions:default": [],
4563 })`,
4564 "local_includes": `["."]`,
4565 }),
4566 },
4567 })
4568}
Trevor Radcliffe27669c02023-03-28 20:47:10 +00004569
4570func TestCcLibraryWithCfi(t *testing.T) {
4571 runCcLibraryTestCase(t, Bp2buildTestCase{
4572 Description: "cc_library has correct features when cfi is enabled",
4573 ModuleTypeUnderTest: "cc_library",
4574 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4575 Blueprint: `
4576cc_library {
4577 name: "foo",
4578 sanitize: {
4579 cfi: true,
4580 },
4581}`,
4582 ExpectedBazelTargets: []string{
4583 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4584 "features": `["android_cfi"]`,
4585 "local_includes": `["."]`,
4586 }),
4587 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4588 "features": `["android_cfi"]`,
4589 "local_includes": `["."]`,
4590 }),
4591 },
4592 })
4593}
4594
4595func TestCcLibraryWithCfiOsSpecific(t *testing.T) {
4596 runCcLibraryTestCase(t, Bp2buildTestCase{
4597 Description: "cc_library has correct features when cfi is enabled for specific variants",
4598 ModuleTypeUnderTest: "cc_library",
4599 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4600 Blueprint: `
4601cc_library {
4602 name: "foo",
4603 target: {
4604 android: {
4605 sanitize: {
4606 cfi: true,
4607 },
4608 },
4609 },
4610}`,
4611 ExpectedBazelTargets: []string{
4612 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4613 "features": `select({
4614 "//build/bazel/platforms/os:android": ["android_cfi"],
4615 "//conditions:default": [],
4616 })`,
4617 "local_includes": `["."]`,
4618 }),
4619 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4620 "features": `select({
4621 "//build/bazel/platforms/os:android": ["android_cfi"],
4622 "//conditions:default": [],
4623 })`,
4624 "local_includes": `["."]`,
4625 }),
4626 },
4627 })
4628}
4629
4630func TestCcLibraryWithCfiAndCfiAssemblySupport(t *testing.T) {
4631 runCcLibraryTestCase(t, Bp2buildTestCase{
4632 Description: "cc_library has correct features when cfi is enabled with cfi_assembly_support",
4633 ModuleTypeUnderTest: "cc_library",
4634 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4635 Blueprint: `
4636cc_library {
4637 name: "foo",
4638 sanitize: {
4639 cfi: true,
4640 config: {
4641 cfi_assembly_support: true,
4642 },
4643 },
4644}`,
4645 ExpectedBazelTargets: []string{
4646 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4647 "features": `[
4648 "android_cfi",
4649 "android_cfi_assembly_support",
4650 ]`,
4651 "local_includes": `["."]`,
4652 }),
4653 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4654 "features": `[
4655 "android_cfi",
4656 "android_cfi_assembly_support",
4657 ]`,
4658 "local_includes": `["."]`,
4659 }),
4660 },
4661 })
4662}
Spandan Das39ccf932023-05-26 18:03:39 +00004663
Trevor Radcliffe523c5c62023-06-16 20:15:45 +00004664func TestCcLibraryExplicitlyDisablesCfiWhenFalse(t *testing.T) {
4665 runCcLibraryTestCase(t, Bp2buildTestCase{
4666 Description: "cc_library disables cfi when explciitly set to false in the bp",
4667 ModuleTypeUnderTest: "cc_library",
4668 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4669 Blueprint: `
4670cc_library {
4671 name: "foo",
4672 sanitize: {
4673 cfi: false,
4674 },
4675}
4676`,
4677 ExpectedBazelTargets: []string{
4678 MakeBazelTarget("cc_library_static", "foo_bp2build_cc_library_static", AttrNameToString{
4679 "features": `["-android_cfi"]`,
4680 "local_includes": `["."]`,
4681 }),
4682 MakeBazelTarget("cc_library_shared", "foo", AttrNameToString{
4683 "features": `["-android_cfi"]`,
4684 "local_includes": `["."]`,
4685 }),
4686 },
4687 })
4688}
4689
Spandan Das39ccf932023-05-26 18:03:39 +00004690func TestCcLibraryWithStem(t *testing.T) {
4691 runCcLibraryTestCase(t, Bp2buildTestCase{
4692 Description: "cc_library with stem property",
4693 ModuleTypeUnderTest: "cc_library_shared",
4694 ModuleTypeUnderTestFactory: cc.LibrarySharedFactory,
4695 Blueprint: soongCcLibraryPreamble + `
4696cc_library_shared {
4697 name: "foo_with_stem_simple",
4698 stem: "foo",
4699}
4700cc_library_shared {
4701 name: "foo_with_arch_variant_stem",
4702 arch: {
4703 arm: {
4704 stem: "foo-arm",
4705 },
4706 arm64: {
4707 stem: "foo-arm64",
4708 },
4709 },
4710}
4711`,
4712 ExpectedBazelTargets: []string{
4713 MakeBazelTarget("cc_library_shared", "foo_with_stem_simple", AttrNameToString{
4714 "stem": `"foo"`,
4715 "local_includes": `["."]`,
4716 }),
4717 MakeBazelTarget("cc_library_shared", "foo_with_arch_variant_stem", AttrNameToString{
4718 "stem": `select({
4719 "//build/bazel/platforms/arch:arm": "foo-arm",
4720 "//build/bazel/platforms/arch:arm64": "foo-arm64",
4721 "//conditions:default": None,
4722 })`,
4723 "local_includes": `["."]`,
4724 }),
4725 },
4726 })
4727}
Spandan Dasc53767e2023-08-03 23:02:26 +00004728
4729// Bazel enforces that proto_library and the .proto file are in the same bazel package
4730func TestGenerateProtoLibraryInSamePackage(t *testing.T) {
4731 tc := Bp2buildTestCase{
4732 Description: "cc_library depends on .proto files from multiple packages",
4733 ModuleTypeUnderTest: "cc_library",
4734 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4735 Blueprint: `
4736cc_library_static {
4737 name: "foo",
4738 srcs: [
4739 "foo.proto",
4740 "bar/bar.proto", // Different package because there is a bar/Android.bp
4741 "baz/subbaz/baz.proto", // Different package because there is baz/subbaz/Android.bp
4742 ],
Liz Kammer7dc6bcb2023-08-10 12:51:59 -04004743 proto: {
4744 canonical_path_from_root: true,
4745 }
Spandan Dasc53767e2023-08-03 23:02:26 +00004746}
4747` + simpleModuleDoNotConvertBp2build("cc_library", "libprotobuf-cpp-lite"),
4748 Filesystem: map[string]string{
4749 "bar/Android.bp": "",
4750 "baz/subbaz/Android.bp": "",
4751 },
4752 }
4753
4754 // We will run the test 3 times and check in the root, bar and baz/subbaz directories
4755 // Root dir
4756 tc.ExpectedBazelTargets = []string{
4757 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
4758 "local_includes": `["."]`,
4759 "deps": `[":libprotobuf-cpp-lite"]`,
4760 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
4761 }),
4762 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
4763 "srcs": `["foo.proto"]`,
Spandan Dase0f2ed52023-08-22 18:19:44 +00004764 "tags": `["manual"]`,
Spandan Dasc53767e2023-08-03 23:02:26 +00004765 }),
4766 MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
4767 "deps": `[
4768 ":foo_proto",
4769 "//bar:foo_proto",
4770 "//baz/subbaz:foo_proto",
4771 ]`,
4772 }),
4773 }
4774 runCcLibraryTestCase(t, tc)
4775
4776 // bar dir
4777 tc.Dir = "bar"
4778 tc.ExpectedBazelTargets = []string{
4779 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer7dc6bcb2023-08-10 12:51:59 -04004780 "srcs": `["//bar:bar.proto"]`,
Spandan Das215adb42023-08-14 16:52:24 +00004781 "tags": `["manual"]`,
Spandan Dasc53767e2023-08-03 23:02:26 +00004782 }),
4783 }
4784 runCcLibraryTestCase(t, tc)
4785
4786 // baz/subbaz dir
4787 tc.Dir = "baz/subbaz"
4788 tc.ExpectedBazelTargets = []string{
4789 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer7dc6bcb2023-08-10 12:51:59 -04004790 "srcs": `["//baz/subbaz:baz.proto"]`,
Spandan Das215adb42023-08-14 16:52:24 +00004791 "tags": `["manual"]`,
Liz Kammer7dc6bcb2023-08-10 12:51:59 -04004792 }),
4793 }
4794 runCcLibraryTestCase(t, tc)
4795}
4796
4797// Bazel enforces that proto_library and the .proto file are in the same bazel package
4798func TestGenerateProtoLibraryInSamePackageNotCanonicalFromRoot(t *testing.T) {
4799 tc := Bp2buildTestCase{
4800 Description: "cc_library depends on .proto files from multiple packages",
4801 ModuleTypeUnderTest: "cc_library",
4802 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4803 Blueprint: `
4804cc_library_static {
4805 name: "foo",
4806 srcs: [
4807 "foo.proto",
4808 "bar/bar.proto", // Different package because there is a bar/Android.bp
4809 "baz/subbaz/baz.proto", // Different package because there is baz/subbaz/Android.bp
4810 ],
4811 proto: {
4812 canonical_path_from_root: false,
4813 }
4814}
4815` + simpleModuleDoNotConvertBp2build("cc_library", "libprotobuf-cpp-lite"),
4816 Filesystem: map[string]string{
4817 "bar/Android.bp": "",
4818 "baz/subbaz/Android.bp": "",
4819 },
4820 }
4821
4822 // We will run the test 3 times and check in the root, bar and baz/subbaz directories
4823 // Root dir
4824 tc.ExpectedBazelTargets = []string{
4825 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
4826 "local_includes": `["."]`,
4827 "deps": `[":libprotobuf-cpp-lite"]`,
4828 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
4829 }),
4830 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
4831 "srcs": `["foo.proto"]`,
4832 "strip_import_prefix": `""`,
Spandan Dase0f2ed52023-08-22 18:19:44 +00004833 "tags": `["manual"]`,
Liz Kammer7dc6bcb2023-08-10 12:51:59 -04004834 }),
4835 MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
4836 "deps": `[
4837 ":foo_proto",
4838 "//bar:foo_proto",
4839 "//baz/subbaz:foo_proto",
4840 ]`,
4841 }),
4842 }
4843 runCcLibraryTestCase(t, tc)
4844
4845 // bar dir
4846 tc.Dir = "bar"
4847 tc.ExpectedBazelTargets = []string{
4848 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
4849 "srcs": `["//bar:bar.proto"]`,
4850 "strip_import_prefix": `""`,
4851 "import_prefix": `"bar"`,
Spandan Das215adb42023-08-14 16:52:24 +00004852 "tags": `["manual"]`,
Liz Kammer7dc6bcb2023-08-10 12:51:59 -04004853 }),
4854 }
4855 runCcLibraryTestCase(t, tc)
4856
4857 // baz/subbaz dir
4858 tc.Dir = "baz/subbaz"
4859 tc.ExpectedBazelTargets = []string{
4860 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
4861 "srcs": `["//baz/subbaz:baz.proto"]`,
4862 "strip_import_prefix": `""`,
4863 "import_prefix": `"baz/subbaz"`,
Spandan Das215adb42023-08-14 16:52:24 +00004864 "tags": `["manual"]`,
Spandan Dasc53767e2023-08-03 23:02:26 +00004865 }),
4866 }
4867 runCcLibraryTestCase(t, tc)
4868}
Spandan Dasec39d512023-08-15 22:08:18 +00004869
4870func TestProtoIncludeDirs(t *testing.T) {
4871 tc := Bp2buildTestCase{
4872 Description: "cc_library depends on .proto files using proto.include_dirs",
4873 ModuleTypeUnderTest: "cc_library",
4874 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4875 Blueprint: `
4876cc_library_static {
4877 name: "foo",
4878 srcs: [
4879 "foo.proto",
4880 ],
4881 proto: {
4882 include_dirs: ["bar"],
4883 }
4884}
4885` + simpleModuleDoNotConvertBp2build("cc_library", "libprotobuf-cpp-lite"),
4886 Filesystem: map[string]string{
4887 "bar/Android.bp": "",
4888 "bar/bar.proto": "",
4889 "bar/baz/Android.bp": "",
4890 "bar/baz/baz.proto": "",
4891 },
4892 }
4893
4894 // We will run the test 3 times and check in the root, bar and bar/baz directories
4895 // Root dir
4896 tc.ExpectedBazelTargets = []string{
4897 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
4898 "local_includes": `["."]`,
4899 "deps": `[":libprotobuf-cpp-lite"]`,
4900 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
4901 }),
4902 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
4903 "srcs": `["foo.proto"]`,
Spandan Dase0f2ed52023-08-22 18:19:44 +00004904 "tags": `["manual"]`,
Spandan Dasec39d512023-08-15 22:08:18 +00004905 }),
4906 MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
4907 "deps": `[":foo_proto"]`,
4908 "transitive_deps": `[
4909 "//bar:bar.include_dir_bp2build_generated_proto",
4910 "//bar/baz:bar.include_dir_bp2build_generated_proto",
4911 ]`,
4912 }),
4913 }
4914 runCcLibraryTestCase(t, tc)
4915
4916 // bar dir
4917 tc.Dir = "bar"
4918 tc.ExpectedBazelTargets = []string{
Spandan Dasf26ee152023-08-24 23:21:04 +00004919 MakeBazelTargetNoRestrictions("proto_library", "bar.include_dir_bp2build_generated_proto", AttrNameToString{
Spandan Dasec39d512023-08-15 22:08:18 +00004920 "srcs": `["bar.proto"]`,
4921 "strip_import_prefix": `""`,
4922 "tags": `["manual"]`,
4923 }),
4924 }
4925 runCcLibraryTestCase(t, tc)
4926
4927 // bar/baz dir
4928 tc.Dir = "bar/baz"
4929 tc.ExpectedBazelTargets = []string{
Spandan Dasf26ee152023-08-24 23:21:04 +00004930 MakeBazelTargetNoRestrictions("proto_library", "bar.include_dir_bp2build_generated_proto", AttrNameToString{
Spandan Dasec39d512023-08-15 22:08:18 +00004931 "srcs": `["//bar/baz:baz.proto"]`,
4932 "strip_import_prefix": `""`,
4933 "import_prefix": `"baz"`,
4934 "tags": `["manual"]`,
4935 }),
4936 }
4937 runCcLibraryTestCase(t, tc)
4938}
Spandan Das4e5a1942023-08-22 19:20:39 +00004939
Spandan Dasf26ee152023-08-24 23:21:04 +00004940func TestProtoIncludeDirsWithSrcsInMultiplePackages(t *testing.T) {
4941 tc := Bp2buildTestCase{
4942 Description: "cc_library has srcs in multiple bazel packages and uses proto.include_dirs",
4943 ModuleTypeUnderTest: "cc_library",
4944 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4945 Blueprint: `
4946cc_library_static {
4947 name: "foo",
4948 srcs: [
4949 "foo.proto",
4950 "bar/bar.proto",
4951 ],
4952 proto: {
4953 include_dirs: ["baz"],
4954 }
4955}
4956` + simpleModuleDoNotConvertBp2build("cc_library", "libprotobuf-cpp-lite"),
4957 Filesystem: map[string]string{
4958 "bar/Android.bp": "", // package boundary
4959 "baz/Android.bp": "",
4960 "baz/baz.proto": "",
4961 },
4962 }
4963
4964 tc.ExpectedBazelTargets = []string{
4965 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
4966 "local_includes": `["."]`,
4967 "deps": `[":libprotobuf-cpp-lite"]`,
4968 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
4969 }),
4970 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
4971 "srcs": `["foo.proto"]`,
4972 "tags": `["manual"]`,
4973 }),
4974 MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
4975 "deps": `[
4976 ":foo_proto",
4977 "//bar:foo_proto",
4978 ]`,
4979 "transitive_deps": `["//baz:baz.include_dir_bp2build_generated_proto"]`,
4980 }),
4981 }
4982 runCcLibraryTestCase(t, tc)
4983
4984}
4985
Spandan Das4e5a1942023-08-22 19:20:39 +00004986func TestProtoLocalIncludeDirs(t *testing.T) {
4987 tc := Bp2buildTestCase{
4988 Description: "cc_library depends on .proto files using proto.local_include_dirs",
4989 ModuleTypeUnderTest: "cc_library",
4990 ModuleTypeUnderTestFactory: cc.LibraryFactory,
4991 Blueprint: simpleModuleDoNotConvertBp2build("cc_library", "libprotobuf-cpp-lite"),
4992 Filesystem: map[string]string{
4993 "foo/Android.bp": `cc_library_static {
4994 name: "foo",
4995 srcs: [
4996 "foo.proto",
4997 ],
4998 proto: {
4999 local_include_dirs: ["foo_subdir"],
5000 },
5001 bazel_module: { bp2build_available: true },
5002}`,
5003 "foo/foo.proto": "",
5004 "foo/foo_subdir/Android.bp": "",
5005 "foo/foo_subdir/foo_subdir.proto": "",
5006 },
5007 }
5008
5009 // We will run the test 2 times and check in foo and foo/foo_subdir directories
5010 // foo dir
5011 tc.Dir = "foo"
5012 tc.ExpectedBazelTargets = []string{
5013 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
5014 "local_includes": `["."]`,
5015 "deps": `["//:libprotobuf-cpp-lite"]`,
5016 "implementation_whole_archive_deps": `[":foo_cc_proto_lite"]`,
5017 }),
5018 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
5019 "srcs": `["foo.proto"]`,
5020 "tags": `["manual"]`,
5021 }),
5022 MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
5023 "deps": `[":foo_proto"]`,
5024 "transitive_deps": `["//foo/foo_subdir:foo.foo_subdir.include_dir_bp2build_generated_proto"]`,
5025 }),
5026 }
5027 runCcLibraryTestCase(t, tc)
5028
5029 // foo/foo_subdir
5030 tc.Dir = "foo/foo_subdir"
5031 tc.ExpectedBazelTargets = []string{
Spandan Dasf26ee152023-08-24 23:21:04 +00005032 MakeBazelTargetNoRestrictions("proto_library", "foo.foo_subdir.include_dir_bp2build_generated_proto", AttrNameToString{
Spandan Das4e5a1942023-08-22 19:20:39 +00005033 "srcs": `["foo_subdir.proto"]`,
5034 "strip_import_prefix": `""`,
5035 "tags": `["manual"]`,
5036 }),
5037 }
5038 runCcLibraryTestCase(t, tc)
5039}
Spandan Dasab29f572023-09-01 19:43:56 +00005040
5041// `foo_device` and `bar_host` can depend on .proto files of a specific dir,
5042// the dynamically generated proto_library should not have any target_compatible_with
5043func TestProtoLibraryForIncludeDirsIsOsAgnostic(t *testing.T) {
5044 tc := Bp2buildTestCase{
5045 Description: "proto_library generated for proto.include_dirs is compatible for all axes",
5046 ModuleTypeUnderTest: "cc_library",
5047 ModuleTypeUnderTestFactory: cc.LibraryFactory,
5048 Blueprint: simpleModuleDoNotConvertBp2build("cc_library", "libprotobuf-cpp-lite") + `
5049cc_library {
5050 name: "foo_device",
5051 device_supported: true, // this is the default behavior, but added explicitly here for illustration
5052 host_supported: false,
5053 proto: {include_dirs: ["dir"]},
5054}
5055cc_library {
5056 name: "bar_host",
5057 device_supported: false,
5058 host_supported: true,
5059 srcs: ["bar.proto"],
5060 proto: {include_dirs: ["dir"]},
5061}
5062`,
5063 Filesystem: map[string]string{
5064 "dir/Android.bp": "",
5065 "dir/dir.proto": "",
5066 },
5067 Dir: "dir", // check for the generated proto_library
5068 ExpectedBazelTargets: []string{
5069 MakeBazelTargetNoRestrictions("proto_library", "dir.include_dir_bp2build_generated_proto", AttrNameToString{
5070 "srcs": `["dir.proto"]`,
5071 "strip_import_prefix": `""`,
5072 "tags": `["manual"]`,
5073 }),
5074 },
5075 }
5076 runCcLibraryTestCase(t, tc)
5077}
Spandan Dase1cb14b2023-09-05 19:31:12 +00005078
5079func TestCcCompileMultilibConversion(t *testing.T) {
5080 tc := Bp2buildTestCase{
5081 Description: "cc_library with compile_multilib",
5082 ModuleTypeUnderTest: "cc_library",
5083 ModuleTypeUnderTestFactory: cc.LibraryFactory,
5084 Blueprint: `
5085cc_library {
5086 name: "lib32",
5087 compile_multilib: "32",
5088}
5089cc_library {
5090 name: "lib64",
5091 compile_multilib: "64",
5092}
5093`,
5094 ExpectedBazelTargets: []string{
5095 MakeBazelTargetNoRestrictions("cc_library_shared", "lib32", AttrNameToString{
5096 "local_includes": `["."]`,
5097 "target_compatible_with": `["//build/bazel/platforms/os:android"] + select({
5098 "//build/bazel/platforms/arch:arm64": ["@platforms//:incompatible"],
5099 "//build/bazel/platforms/arch:riscv64": ["@platforms//:incompatible"],
5100 "//build/bazel/platforms/arch:x86_64": ["@platforms//:incompatible"],
5101 "//conditions:default": [],
5102 })`,
5103 }),
5104 MakeBazelTargetNoRestrictions("cc_library_static", "lib32_bp2build_cc_library_static", AttrNameToString{
5105 "local_includes": `["."]`,
5106 "target_compatible_with": `["//build/bazel/platforms/os:android"] + select({
5107 "//build/bazel/platforms/arch:arm64": ["@platforms//:incompatible"],
5108 "//build/bazel/platforms/arch:riscv64": ["@platforms//:incompatible"],
5109 "//build/bazel/platforms/arch:x86_64": ["@platforms//:incompatible"],
5110 "//conditions:default": [],
5111 })`,
5112 }),
5113 MakeBazelTargetNoRestrictions("cc_library_shared", "lib64", AttrNameToString{
5114 "local_includes": `["."]`,
5115 "target_compatible_with": `["//build/bazel/platforms/os:android"] + select({
5116 "//build/bazel/platforms/arch:arm": ["@platforms//:incompatible"],
5117 "//build/bazel/platforms/arch:x86": ["@platforms//:incompatible"],
5118 "//conditions:default": [],
5119 })`,
5120 }),
5121 MakeBazelTargetNoRestrictions("cc_library_static", "lib64_bp2build_cc_library_static", AttrNameToString{
5122 "local_includes": `["."]`,
5123 "target_compatible_with": `["//build/bazel/platforms/os:android"] + select({
5124 "//build/bazel/platforms/arch:arm": ["@platforms//:incompatible"],
5125 "//build/bazel/platforms/arch:x86": ["@platforms//:incompatible"],
5126 "//conditions:default": [],
5127 })`,
5128 }),
5129 },
5130 }
5131 runCcLibraryTestCase(t, tc)
5132}