blob: 5a1260f94b4221d0195759e9f91d07652e01ed1c [file] [log] [blame]
Rupert Shuttleworth095081c2021-03-25 09:06:03 +00001// 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 (
Cole Faust6b29f592022-08-09 09:50:56 -070018 "fmt"
19 "testing"
20
Rupert Shuttleworth095081c2021-03-25 09:06:03 +000021 "android/soong/android"
22 "android/soong/cc"
Chris Parsons484e50a2021-05-13 15:13:04 -040023 "android/soong/genrule"
Rupert Shuttleworth095081c2021-03-25 09:06:03 +000024)
25
26const (
27 // See cc/testing.go for more context
28 soongCcLibraryStaticPreamble = `
29cc_defaults {
Liz Kammer8337ea42021-09-10 10:06:32 -040030 name: "linux_bionic_supported",
Rupert Shuttleworth095081c2021-03-25 09:06:03 +000031}`
32)
33
34func TestCcLibraryStaticLoadStatement(t *testing.T) {
35 testCases := []struct {
36 bazelTargets BazelTargets
37 expectedLoadStatements string
38 }{
39 {
40 bazelTargets: BazelTargets{
41 BazelTarget{
42 name: "cc_library_static_target",
43 ruleClass: "cc_library_static",
44 // NOTE: No bzlLoadLocation for native rules
45 },
46 },
47 expectedLoadStatements: ``,
48 },
49 }
50
51 for _, testCase := range testCases {
52 actual := testCase.bazelTargets.LoadStatements()
53 expected := testCase.expectedLoadStatements
54 if actual != expected {
55 t.Fatalf("Expected load statements to be %s, got %s", expected, actual)
56 }
57 }
Rupert Shuttleworth095081c2021-03-25 09:06:03 +000058}
59
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020060func registerCcLibraryStaticModuleTypes(ctx android.RegistrationContext) {
61 cc.RegisterCCBuildComponents(ctx)
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020062 ctx.RegisterModuleType("cc_library_headers", cc.LibraryHeaderFactory)
63 ctx.RegisterModuleType("genrule", genrule.GenRuleFactory)
Chris Parsons51f8c392021-08-03 21:01:05 -040064 // Required for system_shared_libs dependencies.
65 ctx.RegisterModuleType("cc_library", cc.LibraryFactory)
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020066}
67
Sam Delmerico3177a6e2022-06-21 19:28:33 +000068func runCcLibraryStaticTestCase(t *testing.T, tc Bp2buildTestCase) {
Liz Kammere4982e82021-05-25 10:39:35 -040069 t.Helper()
Liz Kammer78cfdaa2021-11-08 12:56:31 -050070
Sam Delmerico3177a6e2022-06-21 19:28:33 +000071 (&tc).ModuleTypeUnderTest = "cc_library_static"
72 (&tc).ModuleTypeUnderTestFactory = cc.LibraryStaticFactory
73 RunBp2BuildTestCase(t, registerCcLibraryStaticModuleTypes, tc)
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020074}
75
76func TestCcLibraryStaticSimple(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +000077 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
78 Description: "cc_library_static test",
79 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +020080 // NOTE: include_dir headers *should not* appear in Bazel hdrs later (?)
81 "include_dir_1/include_dir_1_a.h": "",
82 "include_dir_1/include_dir_1_b.h": "",
83 "include_dir_2/include_dir_2_a.h": "",
84 "include_dir_2/include_dir_2_b.h": "",
85 // NOTE: local_include_dir headers *should not* appear in Bazel hdrs later (?)
86 "local_include_dir_1/local_include_dir_1_a.h": "",
87 "local_include_dir_1/local_include_dir_1_b.h": "",
88 "local_include_dir_2/local_include_dir_2_a.h": "",
89 "local_include_dir_2/local_include_dir_2_b.h": "",
90 // NOTE: export_include_dir headers *should* appear in Bazel hdrs later
91 "export_include_dir_1/export_include_dir_1_a.h": "",
92 "export_include_dir_1/export_include_dir_1_b.h": "",
93 "export_include_dir_2/export_include_dir_2_a.h": "",
94 "export_include_dir_2/export_include_dir_2_b.h": "",
95 // NOTE: Soong implicitly includes headers in the current directory
96 "implicit_include_1.h": "",
97 "implicit_include_2.h": "",
98 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +000099 Blueprint: soongCcLibraryStaticPreamble + `
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000100cc_library_headers {
101 name: "header_lib_1",
102 export_include_dirs: ["header_lib_1"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400103 bazel_module: { bp2build_available: false },
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000104}
105
106cc_library_headers {
107 name: "header_lib_2",
108 export_include_dirs: ["header_lib_2"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400109 bazel_module: { bp2build_available: false },
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000110}
111
112cc_library_static {
113 name: "static_lib_1",
114 srcs: ["static_lib_1.cc"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400115 bazel_module: { bp2build_available: false },
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000116}
117
118cc_library_static {
119 name: "static_lib_2",
120 srcs: ["static_lib_2.cc"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400121 bazel_module: { bp2build_available: false },
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000122}
123
124cc_library_static {
125 name: "whole_static_lib_1",
126 srcs: ["whole_static_lib_1.cc"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400127 bazel_module: { bp2build_available: false },
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000128}
129
130cc_library_static {
131 name: "whole_static_lib_2",
132 srcs: ["whole_static_lib_2.cc"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400133 bazel_module: { bp2build_available: false },
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000134}
135
136cc_library_static {
137 name: "foo_static",
138 srcs: [
139 "foo_static1.cc",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000140 "foo_static2.cc",
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000141 ],
142 cflags: [
143 "-Dflag1",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000144 "-Dflag2"
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000145 ],
146 static_libs: [
147 "static_lib_1",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000148 "static_lib_2"
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000149 ],
150 whole_static_libs: [
151 "whole_static_lib_1",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000152 "whole_static_lib_2"
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000153 ],
154 include_dirs: [
Jingwen Chened9c17d2021-04-13 07:14:55 +0000155 "include_dir_1",
156 "include_dir_2",
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000157 ],
158 local_include_dirs: [
159 "local_include_dir_1",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000160 "local_include_dir_2",
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000161 ],
162 export_include_dirs: [
Chris Parsonsd6358772021-05-18 18:35:24 -0400163 "export_include_dir_1",
164 "export_include_dir_2"
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000165 ],
166 header_libs: [
167 "header_lib_1",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000168 "header_lib_2"
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000169 ],
Yu Liufc603162022-03-01 15:44:08 -0800170 sdk_version: "current",
171 min_sdk_version: "29",
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000172
173 // TODO: Also support export_header_lib_headers
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000174}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000175 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000176 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500177 "absolute_includes": `[
Liz Kammer35687bc2021-09-10 10:07:07 -0400178 "include_dir_1",
179 "include_dir_2",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500180 ]`,
181 "copts": `[
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000182 "-Dflag1",
183 "-Dflag2",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500184 ]`,
185 "export_includes": `[
Liz Kammer5fad5012021-09-09 14:08:21 -0400186 "export_include_dir_1",
187 "export_include_dir_2",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500188 ]`,
189 "implementation_deps": `[
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000190 ":header_lib_1",
191 ":header_lib_2",
192 ":static_lib_1",
193 ":static_lib_2",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500194 ]`,
195 "local_includes": `[
Liz Kammer35687bc2021-09-10 10:07:07 -0400196 "local_include_dir_1",
197 "local_include_dir_2",
198 ".",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500199 ]`,
200 "srcs": `[
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000201 "foo_static1.cc",
202 "foo_static2.cc",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500203 ]`,
204 "whole_archive_deps": `[
Chris Parsons08648312021-05-06 16:23:19 -0400205 ":whole_static_lib_1",
206 ":whole_static_lib_2",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500207 ]`,
Liz Kammer7128d382022-05-12 11:42:33 -0400208 "sdk_version": `"current"`,
209 "min_sdk_version": `"29"`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500210 }),
211 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200212 })
213}
214
215func TestCcLibraryStaticSubpackage(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000216 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
217 Description: "cc_library_static subpackage test",
218 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200219 // subpackage with subdirectory
220 "subpackage/Android.bp": "",
221 "subpackage/subpackage_header.h": "",
222 "subpackage/subdirectory/subdirectory_header.h": "",
223 // subsubpackage with subdirectory
224 "subpackage/subsubpackage/Android.bp": "",
225 "subpackage/subsubpackage/subsubpackage_header.h": "",
226 "subpackage/subsubpackage/subdirectory/subdirectory_header.h": "",
227 // subsubsubpackage with subdirectory
228 "subpackage/subsubpackage/subsubsubpackage/Android.bp": "",
229 "subpackage/subsubpackage/subsubsubpackage/subsubsubpackage_header.h": "",
230 "subpackage/subsubpackage/subsubsubpackage/subdirectory/subdirectory_header.h": "",
Rupert Shuttleworth095081c2021-03-25 09:06:03 +0000231 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000232 Blueprint: soongCcLibraryStaticPreamble + `
Rupert Shuttleworthc143cc52021-04-13 13:08:04 -0400233cc_library_static {
234 name: "foo_static",
Liz Kammer35687bc2021-09-10 10:07:07 -0400235 srcs: [],
Rupert Shuttleworthc143cc52021-04-13 13:08:04 -0400236 include_dirs: [
Liz Kammer35687bc2021-09-10 10:07:07 -0400237 "subpackage",
Rupert Shuttleworthc143cc52021-04-13 13:08:04 -0400238 ],
Rupert Shuttleworthc143cc52021-04-13 13:08:04 -0400239}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000240 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000241 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500242 "absolute_includes": `["subpackage"]`,
243 "local_includes": `["."]`,
244 }),
245 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200246 })
247}
248
249func TestCcLibraryStaticExportIncludeDir(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000250 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
251 Description: "cc_library_static export include dir",
252 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200253 // subpackage with subdirectory
254 "subpackage/Android.bp": "",
255 "subpackage/subpackage_header.h": "",
256 "subpackage/subdirectory/subdirectory_header.h": "",
Rupert Shuttleworthc143cc52021-04-13 13:08:04 -0400257 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000258 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chened9c17d2021-04-13 07:14:55 +0000259cc_library_static {
260 name: "foo_static",
261 export_include_dirs: ["subpackage"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400262 include_build_directory: false,
Jingwen Chened9c17d2021-04-13 07:14:55 +0000263}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000264 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000265 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500266 "export_includes": `["subpackage"]`,
267 }),
268 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200269 })
270}
271
272func TestCcLibraryStaticExportSystemIncludeDir(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000273 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
274 Description: "cc_library_static export system include dir",
275 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200276 // subpackage with subdirectory
277 "subpackage/Android.bp": "",
278 "subpackage/subpackage_header.h": "",
279 "subpackage/subdirectory/subdirectory_header.h": "",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000280 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000281 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chened9c17d2021-04-13 07:14:55 +0000282cc_library_static {
283 name: "foo_static",
284 export_system_include_dirs: ["subpackage"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400285 include_build_directory: false,
Jingwen Chened9c17d2021-04-13 07:14:55 +0000286}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000287 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000288 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500289 "export_system_includes": `["subpackage"]`,
290 }),
291 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200292 })
293}
294
295func TestCcLibraryStaticManyIncludeDirs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000296 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
297 Description: "cc_library_static include_dirs, local_include_dirs, export_include_dirs (b/183742505)",
298 Dir: "subpackage",
299 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200300 // subpackage with subdirectory
301 "subpackage/Android.bp": `
Jingwen Chened9c17d2021-04-13 07:14:55 +0000302cc_library_static {
303 name: "foo_static",
304 // include_dirs are workspace/root relative
305 include_dirs: [
306 "subpackage/subsubpackage",
307 "subpackage2",
308 "subpackage3/subsubpackage"
309 ],
310 local_include_dirs: ["subsubpackage2"], // module dir relative
311 export_include_dirs: ["./exported_subsubpackage"], // module dir relative
312 include_build_directory: true,
313 bazel_module: { bp2build_available: true },
314}`,
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200315 "subpackage/subsubpackage/header.h": "",
316 "subpackage/subsubpackage2/header.h": "",
317 "subpackage/exported_subsubpackage/header.h": "",
318 "subpackage2/header.h": "",
319 "subpackage3/subsubpackage/header.h": "",
320 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000321 Blueprint: soongCcLibraryStaticPreamble,
322 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000323 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500324 "absolute_includes": `[
Liz Kammer35687bc2021-09-10 10:07:07 -0400325 "subpackage/subsubpackage",
326 "subpackage2",
327 "subpackage3/subsubpackage",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500328 ]`,
329 "export_includes": `["./exported_subsubpackage"]`,
330 "local_includes": `[
Liz Kammer35687bc2021-09-10 10:07:07 -0400331 "subsubpackage2",
332 ".",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500333 ]`,
334 })},
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200335 })
336}
337
338func TestCcLibraryStaticIncludeBuildDirectoryDisabled(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000339 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
340 Description: "cc_library_static include_build_directory disabled",
341 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200342 // subpackage with subdirectory
343 "subpackage/Android.bp": "",
344 "subpackage/subpackage_header.h": "",
345 "subpackage/subdirectory/subdirectory_header.h": "",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000346 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000347 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chened9c17d2021-04-13 07:14:55 +0000348cc_library_static {
349 name: "foo_static",
350 include_dirs: ["subpackage"], // still used, but local_include_dirs is recommended
351 local_include_dirs: ["subpackage2"],
352 include_build_directory: false,
353}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000354 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000355 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500356 "absolute_includes": `["subpackage"]`,
357 "local_includes": `["subpackage2"]`,
358 }),
359 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200360 })
361}
362
363func TestCcLibraryStaticIncludeBuildDirectoryEnabled(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000364 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
365 Description: "cc_library_static include_build_directory enabled",
366 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200367 // subpackage with subdirectory
368 "subpackage/Android.bp": "",
369 "subpackage/subpackage_header.h": "",
370 "subpackage2/Android.bp": "",
371 "subpackage2/subpackage2_header.h": "",
372 "subpackage/subdirectory/subdirectory_header.h": "",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000373 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000374 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chened9c17d2021-04-13 07:14:55 +0000375cc_library_static {
376 name: "foo_static",
377 include_dirs: ["subpackage"], // still used, but local_include_dirs is recommended
378 local_include_dirs: ["subpackage2"],
379 include_build_directory: true,
380}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000381 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000382 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500383 "absolute_includes": `["subpackage"]`,
384 "local_includes": `[
Liz Kammer35687bc2021-09-10 10:07:07 -0400385 "subpackage2",
386 ".",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500387 ]`,
388 }),
389 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200390 })
391}
392
393func TestCcLibraryStaticArchSpecificStaticLib(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000394 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
395 Description: "cc_library_static arch-specific static_libs",
396 Filesystem: map[string]string{},
397 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammer8337ea42021-09-10 10:06:32 -0400398cc_library_static {
399 name: "static_dep",
400 bazel_module: { bp2build_available: false },
401}
402cc_library_static {
403 name: "static_dep2",
404 bazel_module: { bp2build_available: false },
405}
Jingwen Chened9c17d2021-04-13 07:14:55 +0000406cc_library_static {
407 name: "foo_static",
408 arch: { arm64: { static_libs: ["static_dep"], whole_static_libs: ["static_dep2"] } },
Liz Kammer8337ea42021-09-10 10:06:32 -0400409 include_build_directory: false,
Jingwen Chened9c17d2021-04-13 07:14:55 +0000410}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000411 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000412 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500413 "implementation_deps": `select({
Chris Parsons08648312021-05-06 16:23:19 -0400414 "//build/bazel/platforms/arch:arm64": [":static_dep"],
Jingwen Chened9c17d2021-04-13 07:14:55 +0000415 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500416 })`,
417 "whole_archive_deps": `select({
Chris Parsons08648312021-05-06 16:23:19 -0400418 "//build/bazel/platforms/arch:arm64": [":static_dep2"],
419 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500420 })`,
421 }),
422 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200423 })
424}
425
426func TestCcLibraryStaticOsSpecificStaticLib(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000427 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
428 Description: "cc_library_static os-specific static_libs",
429 Filesystem: map[string]string{},
430 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammer8337ea42021-09-10 10:06:32 -0400431cc_library_static {
432 name: "static_dep",
433 bazel_module: { bp2build_available: false },
434}
435cc_library_static {
436 name: "static_dep2",
437 bazel_module: { bp2build_available: false },
438}
Jingwen Chened9c17d2021-04-13 07:14:55 +0000439cc_library_static {
440 name: "foo_static",
441 target: { android: { static_libs: ["static_dep"], whole_static_libs: ["static_dep2"] } },
Liz Kammer8337ea42021-09-10 10:06:32 -0400442 include_build_directory: false,
Jingwen Chened9c17d2021-04-13 07:14:55 +0000443}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000444 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000445 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500446 "implementation_deps": `select({
Chris Parsons08648312021-05-06 16:23:19 -0400447 "//build/bazel/platforms/os:android": [":static_dep"],
Jingwen Chened9c17d2021-04-13 07:14:55 +0000448 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500449 })`,
450 "whole_archive_deps": `select({
Chris Parsons08648312021-05-06 16:23:19 -0400451 "//build/bazel/platforms/os:android": [":static_dep2"],
452 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500453 })`,
454 }),
455 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200456 })
457}
458
459func TestCcLibraryStaticBaseArchOsSpecificStaticLib(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000460 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
461 Description: "cc_library_static base, arch and os-specific static_libs",
462 Filesystem: map[string]string{},
463 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammer8337ea42021-09-10 10:06:32 -0400464cc_library_static {
465 name: "static_dep",
466 bazel_module: { bp2build_available: false },
467}
468cc_library_static {
469 name: "static_dep2",
470 bazel_module: { bp2build_available: false },
471}
472cc_library_static {
473 name: "static_dep3",
474 bazel_module: { bp2build_available: false },
475}
476cc_library_static {
477 name: "static_dep4",
478 bazel_module: { bp2build_available: false },
479}
Jingwen Chened9c17d2021-04-13 07:14:55 +0000480cc_library_static {
481 name: "foo_static",
482 static_libs: ["static_dep"],
483 whole_static_libs: ["static_dep2"],
484 target: { android: { static_libs: ["static_dep3"] } },
485 arch: { arm64: { static_libs: ["static_dep4"] } },
Liz Kammer8337ea42021-09-10 10:06:32 -0400486 include_build_directory: false,
Jingwen Chened9c17d2021-04-13 07:14:55 +0000487}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000488 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000489 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500490 "implementation_deps": `[":static_dep"] + select({
Jingwen Chened9c17d2021-04-13 07:14:55 +0000491 "//build/bazel/platforms/arch:arm64": [":static_dep4"],
492 "//conditions:default": [],
493 }) + select({
494 "//build/bazel/platforms/os:android": [":static_dep3"],
495 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500496 })`,
497 "whole_archive_deps": `[":static_dep2"]`,
498 }),
499 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200500 })
501}
502
503func TestCcLibraryStaticSimpleExcludeSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000504 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
505 Description: "cc_library_static simple exclude_srcs",
506 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200507 "common.c": "",
508 "foo-a.c": "",
509 "foo-excluded.c": "",
Jingwen Chened9c17d2021-04-13 07:14:55 +0000510 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000511 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chene32e9e02021-04-23 09:17:24 +0000512cc_library_static {
513 name: "foo_static",
514 srcs: ["common.c", "foo-*.c"],
515 exclude_srcs: ["foo-excluded.c"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400516 include_build_directory: false,
Jingwen Chene32e9e02021-04-23 09:17:24 +0000517}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000518 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000519 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500520 "srcs_c": `[
Jingwen Chene32e9e02021-04-23 09:17:24 +0000521 "common.c",
522 "foo-a.c",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500523 ]`,
524 }),
525 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200526 })
527}
528
529func TestCcLibraryStaticOneArchSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000530 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
531 Description: "cc_library_static one arch specific srcs",
532 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200533 "common.c": "",
534 "foo-arm.c": "",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000535 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000536 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chene32e9e02021-04-23 09:17:24 +0000537cc_library_static {
538 name: "foo_static",
539 srcs: ["common.c"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400540 arch: { arm: { srcs: ["foo-arm.c"] } },
541 include_build_directory: false,
Jingwen Chene32e9e02021-04-23 09:17:24 +0000542}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000543 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000544 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500545 "srcs_c": `["common.c"] + select({
Jingwen Chene32e9e02021-04-23 09:17:24 +0000546 "//build/bazel/platforms/arch:arm": ["foo-arm.c"],
547 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500548 })`,
549 }),
550 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200551 })
552}
553
554func TestCcLibraryStaticOneArchSrcsExcludeSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000555 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
556 Description: "cc_library_static one arch specific srcs and exclude_srcs",
557 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200558 "common.c": "",
559 "for-arm.c": "",
560 "not-for-arm.c": "",
561 "not-for-anything.c": "",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000562 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000563 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chene32e9e02021-04-23 09:17:24 +0000564cc_library_static {
565 name: "foo_static",
566 srcs: ["common.c", "not-for-*.c"],
567 exclude_srcs: ["not-for-anything.c"],
568 arch: {
569 arm: { srcs: ["for-arm.c"], exclude_srcs: ["not-for-arm.c"] },
570 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400571 include_build_directory: false,
Jingwen Chene32e9e02021-04-23 09:17:24 +0000572}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000573 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000574 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500575 "srcs_c": `["common.c"] + select({
Jingwen Chene32e9e02021-04-23 09:17:24 +0000576 "//build/bazel/platforms/arch:arm": ["for-arm.c"],
577 "//conditions:default": ["not-for-arm.c"],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500578 })`,
579 }),
580 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200581 })
582}
583
584func TestCcLibraryStaticTwoArchExcludeSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000585 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
586 Description: "cc_library_static arch specific exclude_srcs for 2 architectures",
587 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200588 "common.c": "",
589 "for-arm.c": "",
590 "for-x86.c": "",
591 "not-for-arm.c": "",
592 "not-for-x86.c": "",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000593 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000594 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chene32e9e02021-04-23 09:17:24 +0000595cc_library_static {
596 name: "foo_static",
597 srcs: ["common.c", "not-for-*.c"],
598 exclude_srcs: ["not-for-everything.c"],
599 arch: {
600 arm: { srcs: ["for-arm.c"], exclude_srcs: ["not-for-arm.c"] },
601 x86: { srcs: ["for-x86.c"], exclude_srcs: ["not-for-x86.c"] },
602 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400603 include_build_directory: false,
Jingwen Chene32e9e02021-04-23 09:17:24 +0000604} `,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000605 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000606 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500607 "srcs_c": `["common.c"] + select({
Jingwen Chene32e9e02021-04-23 09:17:24 +0000608 "//build/bazel/platforms/arch:arm": [
Jingwen Chene32e9e02021-04-23 09:17:24 +0000609 "not-for-x86.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400610 "for-arm.c",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000611 ],
612 "//build/bazel/platforms/arch:x86": [
Jingwen Chene32e9e02021-04-23 09:17:24 +0000613 "not-for-arm.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400614 "for-x86.c",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000615 ],
616 "//conditions:default": [
617 "not-for-arm.c",
618 "not-for-x86.c",
619 ],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500620 })`,
621 }),
622 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200623 })
624}
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500625
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200626func TestCcLibraryStaticFourArchExcludeSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000627 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
628 Description: "cc_library_static arch specific exclude_srcs for 4 architectures",
629 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200630 "common.c": "",
631 "for-arm.c": "",
632 "for-arm64.c": "",
633 "for-x86.c": "",
634 "for-x86_64.c": "",
635 "not-for-arm.c": "",
636 "not-for-arm64.c": "",
637 "not-for-x86.c": "",
638 "not-for-x86_64.c": "",
639 "not-for-everything.c": "",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000640 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000641 Blueprint: soongCcLibraryStaticPreamble + `
Jingwen Chene32e9e02021-04-23 09:17:24 +0000642cc_library_static {
643 name: "foo_static",
644 srcs: ["common.c", "not-for-*.c"],
645 exclude_srcs: ["not-for-everything.c"],
646 arch: {
647 arm: { srcs: ["for-arm.c"], exclude_srcs: ["not-for-arm.c"] },
648 arm64: { srcs: ["for-arm64.c"], exclude_srcs: ["not-for-arm64.c"] },
649 x86: { srcs: ["for-x86.c"], exclude_srcs: ["not-for-x86.c"] },
650 x86_64: { srcs: ["for-x86_64.c"], exclude_srcs: ["not-for-x86_64.c"] },
Liz Kammer8337ea42021-09-10 10:06:32 -0400651 },
652 include_build_directory: false,
Jingwen Chene32e9e02021-04-23 09:17:24 +0000653} `,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000654 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000655 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500656 "srcs_c": `["common.c"] + select({
Jingwen Chene32e9e02021-04-23 09:17:24 +0000657 "//build/bazel/platforms/arch:arm": [
Jingwen Chene32e9e02021-04-23 09:17:24 +0000658 "not-for-arm64.c",
659 "not-for-x86.c",
660 "not-for-x86_64.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400661 "for-arm.c",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000662 ],
663 "//build/bazel/platforms/arch:arm64": [
Jingwen Chene32e9e02021-04-23 09:17:24 +0000664 "not-for-arm.c",
665 "not-for-x86.c",
666 "not-for-x86_64.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400667 "for-arm64.c",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000668 ],
669 "//build/bazel/platforms/arch:x86": [
Jingwen Chene32e9e02021-04-23 09:17:24 +0000670 "not-for-arm.c",
671 "not-for-arm64.c",
672 "not-for-x86_64.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400673 "for-x86.c",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000674 ],
675 "//build/bazel/platforms/arch:x86_64": [
Jingwen Chene32e9e02021-04-23 09:17:24 +0000676 "not-for-arm.c",
677 "not-for-arm64.c",
678 "not-for-x86.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400679 "for-x86_64.c",
Jingwen Chene32e9e02021-04-23 09:17:24 +0000680 ],
681 "//conditions:default": [
682 "not-for-arm.c",
683 "not-for-arm64.c",
684 "not-for-x86.c",
685 "not-for-x86_64.c",
686 ],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500687 })`,
688 }),
689 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200690 })
691}
692
Liz Kammer2b07ec72021-05-26 15:08:27 -0400693func TestCcLibraryStaticOneArchEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000694 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
695 Description: "cc_library_static one arch empty",
696 Filesystem: map[string]string{
Liz Kammer2b07ec72021-05-26 15:08:27 -0400697 "common.cc": "",
698 "foo-no-arm.cc": "",
699 "foo-excluded.cc": "",
700 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000701 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammer2b07ec72021-05-26 15:08:27 -0400702cc_library_static {
703 name: "foo_static",
704 srcs: ["common.cc", "foo-*.cc"],
705 exclude_srcs: ["foo-excluded.cc"],
706 arch: {
707 arm: { exclude_srcs: ["foo-no-arm.cc"] },
708 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400709 include_build_directory: false,
Liz Kammer2b07ec72021-05-26 15:08:27 -0400710}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000711 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000712 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500713 "srcs": `["common.cc"] + select({
Liz Kammer2b07ec72021-05-26 15:08:27 -0400714 "//build/bazel/platforms/arch:arm": [],
715 "//conditions:default": ["foo-no-arm.cc"],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500716 })`,
717 }),
718 },
Liz Kammer2b07ec72021-05-26 15:08:27 -0400719 })
720}
721
722func TestCcLibraryStaticOneArchEmptyOtherSet(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000723 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
724 Description: "cc_library_static one arch empty other set",
725 Filesystem: map[string]string{
Liz Kammer2b07ec72021-05-26 15:08:27 -0400726 "common.cc": "",
727 "foo-no-arm.cc": "",
728 "x86-only.cc": "",
729 "foo-excluded.cc": "",
730 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000731 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammer2b07ec72021-05-26 15:08:27 -0400732cc_library_static {
733 name: "foo_static",
734 srcs: ["common.cc", "foo-*.cc"],
735 exclude_srcs: ["foo-excluded.cc"],
736 arch: {
737 arm: { exclude_srcs: ["foo-no-arm.cc"] },
738 x86: { srcs: ["x86-only.cc"] },
739 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400740 include_build_directory: false,
Liz Kammer2b07ec72021-05-26 15:08:27 -0400741}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000742 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000743 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500744 "srcs": `["common.cc"] + select({
Liz Kammer2b07ec72021-05-26 15:08:27 -0400745 "//build/bazel/platforms/arch:arm": [],
746 "//build/bazel/platforms/arch:x86": [
747 "foo-no-arm.cc",
748 "x86-only.cc",
749 ],
750 "//conditions:default": ["foo-no-arm.cc"],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500751 })`,
752 }),
753 },
Liz Kammer2b07ec72021-05-26 15:08:27 -0400754 })
755}
756
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200757func TestCcLibraryStaticMultipleDepSameName(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000758 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
759 Description: "cc_library_static multiple dep same name panic",
760 Filesystem: map[string]string{},
761 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammer8337ea42021-09-10 10:06:32 -0400762cc_library_static {
763 name: "static_dep",
764 bazel_module: { bp2build_available: false },
765}
Liz Kammer2b50ce62021-04-26 15:47:28 -0400766cc_library_static {
767 name: "foo_static",
Chris Parsons08648312021-05-06 16:23:19 -0400768 static_libs: ["static_dep", "static_dep"],
Liz Kammer8337ea42021-09-10 10:06:32 -0400769 include_build_directory: false,
Liz Kammer2b50ce62021-04-26 15:47:28 -0400770}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000771 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000772 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500773 "implementation_deps": `[":static_dep"]`,
774 }),
775 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200776 })
777}
778
779func TestCcLibraryStaticOneMultilibSrcsExcludeSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000780 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
781 Description: "cc_library_static 1 multilib srcs and exclude_srcs",
782 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200783 "common.c": "",
784 "for-lib32.c": "",
785 "not-for-lib32.c": "",
Liz Kammer2b50ce62021-04-26 15:47:28 -0400786 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000787 Blueprint: soongCcLibraryStaticPreamble + `
Chris Parsonsc424b762021-04-29 18:06:50 -0400788cc_library_static {
789 name: "foo_static",
790 srcs: ["common.c", "not-for-*.c"],
791 multilib: {
792 lib32: { srcs: ["for-lib32.c"], exclude_srcs: ["not-for-lib32.c"] },
793 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400794 include_build_directory: false,
Chris Parsonsc424b762021-04-29 18:06:50 -0400795} `,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000796 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000797 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500798 "srcs_c": `["common.c"] + select({
Chris Parsonsc424b762021-04-29 18:06:50 -0400799 "//build/bazel/platforms/arch:arm": ["for-lib32.c"],
800 "//build/bazel/platforms/arch:x86": ["for-lib32.c"],
801 "//conditions:default": ["not-for-lib32.c"],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500802 })`,
803 }),
804 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200805 })
806}
807
808func TestCcLibraryStaticTwoMultilibSrcsExcludeSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000809 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
810 Description: "cc_library_static 2 multilib srcs and exclude_srcs",
811 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200812 "common.c": "",
813 "for-lib32.c": "",
814 "for-lib64.c": "",
815 "not-for-lib32.c": "",
816 "not-for-lib64.c": "",
Chris Parsonsc424b762021-04-29 18:06:50 -0400817 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000818 Blueprint: soongCcLibraryStaticPreamble + `
Chris Parsonsc424b762021-04-29 18:06:50 -0400819cc_library_static {
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500820 name: "foo_static",
Chris Parsonsc424b762021-04-29 18:06:50 -0400821 srcs: ["common.c", "not-for-*.c"],
822 multilib: {
823 lib32: { srcs: ["for-lib32.c"], exclude_srcs: ["not-for-lib32.c"] },
824 lib64: { srcs: ["for-lib64.c"], exclude_srcs: ["not-for-lib64.c"] },
825 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400826 include_build_directory: false,
Chris Parsonsc424b762021-04-29 18:06:50 -0400827} `,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000828 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000829 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500830 "srcs_c": `["common.c"] + select({
Chris Parsonsc424b762021-04-29 18:06:50 -0400831 "//build/bazel/platforms/arch:arm": [
Chris Parsonsc424b762021-04-29 18:06:50 -0400832 "not-for-lib64.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400833 "for-lib32.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400834 ],
835 "//build/bazel/platforms/arch:arm64": [
Chris Parsonsc424b762021-04-29 18:06:50 -0400836 "not-for-lib32.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400837 "for-lib64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400838 ],
Colin Crossf05b0d32022-07-14 18:10:34 -0700839 "//build/bazel/platforms/arch:riscv64": [
840 "not-for-lib32.c",
841 "for-lib64.c",
842 ],
Chris Parsonsc424b762021-04-29 18:06:50 -0400843 "//build/bazel/platforms/arch:x86": [
Chris Parsonsc424b762021-04-29 18:06:50 -0400844 "not-for-lib64.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400845 "for-lib32.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400846 ],
847 "//build/bazel/platforms/arch:x86_64": [
Chris Parsonsc424b762021-04-29 18:06:50 -0400848 "not-for-lib32.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400849 "for-lib64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400850 ],
851 "//conditions:default": [
852 "not-for-lib32.c",
853 "not-for-lib64.c",
854 ],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500855 })`,
856 }),
857 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200858 })
859}
860
861func TestCcLibrarySTaticArchMultilibSrcsExcludeSrcs(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000862 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
863 Description: "cc_library_static arch and multilib srcs and exclude_srcs",
864 Filesystem: map[string]string{
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200865 "common.c": "",
866 "for-arm.c": "",
867 "for-arm64.c": "",
868 "for-x86.c": "",
869 "for-x86_64.c": "",
870 "for-lib32.c": "",
871 "for-lib64.c": "",
872 "not-for-arm.c": "",
873 "not-for-arm64.c": "",
Colin Crossf05b0d32022-07-14 18:10:34 -0700874 "not-for-riscv64.c": "",
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200875 "not-for-x86.c": "",
876 "not-for-x86_64.c": "",
877 "not-for-lib32.c": "",
878 "not-for-lib64.c": "",
879 "not-for-everything.c": "",
Chris Parsonsc424b762021-04-29 18:06:50 -0400880 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000881 Blueprint: soongCcLibraryStaticPreamble + `
Chris Parsonsc424b762021-04-29 18:06:50 -0400882cc_library_static {
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500883 name: "foo_static",
Chris Parsonsc424b762021-04-29 18:06:50 -0400884 srcs: ["common.c", "not-for-*.c"],
885 exclude_srcs: ["not-for-everything.c"],
886 arch: {
887 arm: { srcs: ["for-arm.c"], exclude_srcs: ["not-for-arm.c"] },
888 arm64: { srcs: ["for-arm64.c"], exclude_srcs: ["not-for-arm64.c"] },
Colin Crossf05b0d32022-07-14 18:10:34 -0700889 riscv64: { srcs: ["for-riscv64.c"], exclude_srcs: ["not-for-riscv64.c"] },
Chris Parsonsc424b762021-04-29 18:06:50 -0400890 x86: { srcs: ["for-x86.c"], exclude_srcs: ["not-for-x86.c"] },
891 x86_64: { srcs: ["for-x86_64.c"], exclude_srcs: ["not-for-x86_64.c"] },
892 },
893 multilib: {
894 lib32: { srcs: ["for-lib32.c"], exclude_srcs: ["not-for-lib32.c"] },
895 lib64: { srcs: ["for-lib64.c"], exclude_srcs: ["not-for-lib64.c"] },
896 },
Liz Kammer8337ea42021-09-10 10:06:32 -0400897 include_build_directory: false,
Chris Parsonsc424b762021-04-29 18:06:50 -0400898}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000899 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000900 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500901 "srcs_c": `["common.c"] + select({
Chris Parsonsc424b762021-04-29 18:06:50 -0400902 "//build/bazel/platforms/arch:arm": [
Liz Kammer9bad9d62021-10-11 15:40:35 -0400903 "not-for-arm64.c",
904 "not-for-lib64.c",
Colin Crossf05b0d32022-07-14 18:10:34 -0700905 "not-for-riscv64.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400906 "not-for-x86.c",
907 "not-for-x86_64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400908 "for-arm.c",
909 "for-lib32.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400910 ],
911 "//build/bazel/platforms/arch:arm64": [
Chris Parsonsc424b762021-04-29 18:06:50 -0400912 "not-for-arm.c",
913 "not-for-lib32.c",
Colin Crossf05b0d32022-07-14 18:10:34 -0700914 "not-for-riscv64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400915 "not-for-x86.c",
916 "not-for-x86_64.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400917 "for-arm64.c",
918 "for-lib64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400919 ],
Colin Crossf05b0d32022-07-14 18:10:34 -0700920 "//build/bazel/platforms/arch:riscv64": [
921 "not-for-arm.c",
922 "not-for-arm64.c",
923 "not-for-lib32.c",
924 "not-for-x86.c",
925 "not-for-x86_64.c",
926 "for-riscv64.c",
927 "for-lib64.c",
928 ],
Chris Parsonsc424b762021-04-29 18:06:50 -0400929 "//build/bazel/platforms/arch:x86": [
Chris Parsonsc424b762021-04-29 18:06:50 -0400930 "not-for-arm.c",
931 "not-for-arm64.c",
932 "not-for-lib64.c",
Colin Crossf05b0d32022-07-14 18:10:34 -0700933 "not-for-riscv64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400934 "not-for-x86_64.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400935 "for-x86.c",
936 "for-lib32.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400937 ],
938 "//build/bazel/platforms/arch:x86_64": [
Chris Parsonsc424b762021-04-29 18:06:50 -0400939 "not-for-arm.c",
940 "not-for-arm64.c",
941 "not-for-lib32.c",
Colin Crossf05b0d32022-07-14 18:10:34 -0700942 "not-for-riscv64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400943 "not-for-x86.c",
Liz Kammer9bad9d62021-10-11 15:40:35 -0400944 "for-x86_64.c",
945 "for-lib64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400946 ],
947 "//conditions:default": [
948 "not-for-arm.c",
949 "not-for-arm64.c",
950 "not-for-lib32.c",
951 "not-for-lib64.c",
Colin Crossf05b0d32022-07-14 18:10:34 -0700952 "not-for-riscv64.c",
Chris Parsonsc424b762021-04-29 18:06:50 -0400953 "not-for-x86.c",
954 "not-for-x86_64.c",
955 ],
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500956 })`,
957 }),
958 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +0200959 })
960}
961
Liz Kammerae3994e2021-10-19 09:45:48 -0400962func TestCcLibraryStaticGeneratedHeadersAllPartitions(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000963 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
964 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammerae3994e2021-10-19 09:45:48 -0400965genrule {
966 name: "generated_hdr",
967 cmd: "nothing to see here",
Liz Kammerbe46fcc2021-11-01 15:32:43 -0400968 bazel_module: { bp2build_available: false },
Liz Kammerae3994e2021-10-19 09:45:48 -0400969}
970
Liz Kammere6583482021-10-19 13:56:10 -0400971genrule {
972 name: "export_generated_hdr",
973 cmd: "nothing to see here",
Liz Kammerbe46fcc2021-11-01 15:32:43 -0400974 bazel_module: { bp2build_available: false },
Liz Kammere6583482021-10-19 13:56:10 -0400975}
976
Liz Kammerae3994e2021-10-19 09:45:48 -0400977cc_library_static {
978 name: "foo_static",
979 srcs: ["cpp_src.cpp", "as_src.S", "c_src.c"],
Liz Kammere6583482021-10-19 13:56:10 -0400980 generated_headers: ["generated_hdr", "export_generated_hdr"],
981 export_generated_headers: ["export_generated_hdr"],
Liz Kammerae3994e2021-10-19 09:45:48 -0400982 include_build_directory: false,
983}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +0000984 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +0000985 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer1263d9b2021-12-10 14:28:20 -0500986 "export_includes": `["."]`,
987 "local_includes": `["."]`,
988 "hdrs": `[":export_generated_hdr"]`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500989 "srcs": `[
Liz Kammerae3994e2021-10-19 09:45:48 -0400990 "cpp_src.cpp",
991 ":generated_hdr",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500992 ]`,
993 "srcs_as": `[
Liz Kammerae3994e2021-10-19 09:45:48 -0400994 "as_src.S",
995 ":generated_hdr",
Liz Kammer78cfdaa2021-11-08 12:56:31 -0500996 ]`,
997 "srcs_c": `[
Liz Kammerae3994e2021-10-19 09:45:48 -0400998 "c_src.c",
999 ":generated_hdr",
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001000 ]`,
1001 }),
1002 },
Liz Kammerae3994e2021-10-19 09:45:48 -04001003 })
1004}
1005
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +02001006func TestCcLibraryStaticArchSrcsExcludeSrcsGeneratedFiles(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001007 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1008 Description: "cc_library_static arch srcs/exclude_srcs with generated files",
1009 Filesystem: map[string]string{
Chris Parsons990c4f42021-05-25 12:10:58 -04001010 "common.cpp": "",
1011 "for-x86.cpp": "",
1012 "not-for-x86.cpp": "",
1013 "not-for-everything.cpp": "",
Liz Kammerbe46fcc2021-11-01 15:32:43 -04001014 "dep/Android.bp": simpleModuleDoNotConvertBp2build("genrule", "generated_src_other_pkg") +
1015 simpleModuleDoNotConvertBp2build("genrule", "generated_hdr_other_pkg") +
1016 simpleModuleDoNotConvertBp2build("genrule", "generated_src_other_pkg_x86") +
1017 simpleModuleDoNotConvertBp2build("genrule", "generated_hdr_other_pkg_x86") +
1018 simpleModuleDoNotConvertBp2build("genrule", "generated_hdr_other_pkg_android"),
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +02001019 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001020 Blueprint: soongCcLibraryStaticPreamble +
Liz Kammerbe46fcc2021-11-01 15:32:43 -04001021 simpleModuleDoNotConvertBp2build("genrule", "generated_src") +
1022 simpleModuleDoNotConvertBp2build("genrule", "generated_src_not_x86") +
1023 simpleModuleDoNotConvertBp2build("genrule", "generated_src_android") +
1024 simpleModuleDoNotConvertBp2build("genrule", "generated_hdr") + `
Chris Parsons484e50a2021-05-13 15:13:04 -04001025cc_library_static {
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001026 name: "foo_static",
Liz Kammer222bdcf2021-10-11 14:15:51 -04001027 srcs: ["common.cpp", "not-for-*.cpp"],
1028 exclude_srcs: ["not-for-everything.cpp"],
1029 generated_sources: ["generated_src", "generated_src_other_pkg", "generated_src_not_x86"],
1030 generated_headers: ["generated_hdr", "generated_hdr_other_pkg"],
Liz Kammer1263d9b2021-12-10 14:28:20 -05001031 export_generated_headers: ["generated_hdr_other_pkg"],
Liz Kammer222bdcf2021-10-11 14:15:51 -04001032 arch: {
1033 x86: {
1034 srcs: ["for-x86.cpp"],
1035 exclude_srcs: ["not-for-x86.cpp"],
1036 generated_headers: ["generated_hdr_other_pkg_x86"],
1037 exclude_generated_sources: ["generated_src_not_x86"],
Liz Kammer1263d9b2021-12-10 14:28:20 -05001038 export_generated_headers: ["generated_hdr_other_pkg_x86"],
Liz Kammer222bdcf2021-10-11 14:15:51 -04001039 },
1040 },
1041 target: {
1042 android: {
1043 generated_sources: ["generated_src_android"],
1044 generated_headers: ["generated_hdr_other_pkg_android"],
Liz Kammer1263d9b2021-12-10 14:28:20 -05001045 export_generated_headers: ["generated_hdr_other_pkg_android"],
Liz Kammer222bdcf2021-10-11 14:15:51 -04001046 },
1047 },
1048
Liz Kammer8337ea42021-09-10 10:06:32 -04001049 include_build_directory: false,
Chris Parsons484e50a2021-05-13 15:13:04 -04001050}
1051`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001052 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001053 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001054 "srcs": `[
Chris Parsons990c4f42021-05-25 12:10:58 -04001055 "common.cpp",
Liz Kammer9bad9d62021-10-11 15:40:35 -04001056 ":generated_src",
1057 "//dep:generated_src_other_pkg",
Liz Kammerae3994e2021-10-19 09:45:48 -04001058 ":generated_hdr",
Chris Parsons484e50a2021-05-13 15:13:04 -04001059 ] + select({
Liz Kammer1263d9b2021-12-10 14:28:20 -05001060 "//build/bazel/platforms/arch:x86": ["for-x86.cpp"],
Liz Kammer222bdcf2021-10-11 14:15:51 -04001061 "//conditions:default": [
Liz Kammer222bdcf2021-10-11 14:15:51 -04001062 "not-for-x86.cpp",
Liz Kammer9bad9d62021-10-11 15:40:35 -04001063 ":generated_src_not_x86",
Liz Kammer222bdcf2021-10-11 14:15:51 -04001064 ],
1065 }) + select({
Liz Kammer1263d9b2021-12-10 14:28:20 -05001066 "//build/bazel/platforms/os:android": [":generated_src_android"],
Liz Kammer222bdcf2021-10-11 14:15:51 -04001067 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001068 })`,
Liz Kammer1263d9b2021-12-10 14:28:20 -05001069 "hdrs": `["//dep:generated_hdr_other_pkg"] + select({
1070 "//build/bazel/platforms/arch:x86": ["//dep:generated_hdr_other_pkg_x86"],
1071 "//conditions:default": [],
1072 }) + select({
1073 "//build/bazel/platforms/os:android": ["//dep:generated_hdr_other_pkg_android"],
1074 "//conditions:default": [],
1075 })`,
1076 "local_includes": `["."]`,
1077 "export_absolute_includes": `["dep"]`,
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001078 }),
1079 },
Lukacs T. Berkic1cc3b92021-05-21 09:37:00 +02001080 })
Rupert Shuttleworth095081c2021-03-25 09:06:03 +00001081}
Liz Kammer6fd7b3f2021-05-06 13:54:29 -04001082
Rupert Shuttleworthc194ffb2021-05-19 06:49:02 -04001083func TestCcLibraryStaticGetTargetProperties(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001084 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
Rupert Shuttleworthc194ffb2021-05-19 06:49:02 -04001085
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001086 Description: "cc_library_static complex GetTargetProperties",
1087 Blueprint: soongCcLibraryStaticPreamble + `
Rupert Shuttleworthc194ffb2021-05-19 06:49:02 -04001088cc_library_static {
1089 name: "foo_static",
1090 target: {
1091 android: {
1092 srcs: ["android_src.c"],
1093 },
1094 android_arm: {
1095 srcs: ["android_arm_src.c"],
1096 },
1097 android_arm64: {
1098 srcs: ["android_arm64_src.c"],
1099 },
1100 android_x86: {
1101 srcs: ["android_x86_src.c"],
1102 },
1103 android_x86_64: {
1104 srcs: ["android_x86_64_src.c"],
1105 },
1106 linux_bionic_arm64: {
1107 srcs: ["linux_bionic_arm64_src.c"],
1108 },
1109 linux_bionic_x86_64: {
1110 srcs: ["linux_bionic_x86_64_src.c"],
1111 },
1112 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001113 include_build_directory: false,
Rupert Shuttleworthc194ffb2021-05-19 06:49:02 -04001114}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001115 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001116 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001117 "srcs_c": `select({
Rupert Shuttleworthc194ffb2021-05-19 06:49:02 -04001118 "//build/bazel/platforms/os:android": ["android_src.c"],
1119 "//conditions:default": [],
1120 }) + select({
Rupert Shuttleworthffd45822021-05-14 03:02:34 -04001121 "//build/bazel/platforms/os_arch:android_arm": ["android_arm_src.c"],
1122 "//build/bazel/platforms/os_arch:android_arm64": ["android_arm64_src.c"],
1123 "//build/bazel/platforms/os_arch:android_x86": ["android_x86_src.c"],
1124 "//build/bazel/platforms/os_arch:android_x86_64": ["android_x86_64_src.c"],
Rupert Shuttleworthffd45822021-05-14 03:02:34 -04001125 "//build/bazel/platforms/os_arch:linux_bionic_arm64": ["linux_bionic_arm64_src.c"],
1126 "//build/bazel/platforms/os_arch:linux_bionic_x86_64": ["linux_bionic_x86_64_src.c"],
Rupert Shuttleworthc194ffb2021-05-19 06:49:02 -04001127 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001128 })`,
1129 }),
1130 },
Rupert Shuttleworthc194ffb2021-05-19 06:49:02 -04001131 })
1132}
1133
Liz Kammer6fd7b3f2021-05-06 13:54:29 -04001134func TestCcLibraryStaticProductVariableSelects(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001135 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1136 Description: "cc_library_static product variable selects",
1137 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammer6fd7b3f2021-05-06 13:54:29 -04001138cc_library_static {
1139 name: "foo_static",
1140 srcs: ["common.c"],
1141 product_variables: {
1142 malloc_not_svelte: {
1143 cflags: ["-Wmalloc_not_svelte"],
1144 },
1145 malloc_zero_contents: {
1146 cflags: ["-Wmalloc_zero_contents"],
1147 },
1148 binder32bit: {
1149 cflags: ["-Wbinder32bit"],
1150 },
1151 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001152 include_build_directory: false,
Liz Kammer6fd7b3f2021-05-06 13:54:29 -04001153} `,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001154 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001155 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001156 "copts": `select({
Liz Kammere3e4a5f2021-05-10 11:39:53 -04001157 "//build/bazel/product_variables:binder32bit": ["-Wbinder32bit"],
1158 "//conditions:default": [],
1159 }) + select({
Liz Kammer6fd7b3f2021-05-06 13:54:29 -04001160 "//build/bazel/product_variables:malloc_not_svelte": ["-Wmalloc_not_svelte"],
1161 "//conditions:default": [],
1162 }) + select({
1163 "//build/bazel/product_variables:malloc_zero_contents": ["-Wmalloc_zero_contents"],
1164 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001165 })`,
1166 "srcs_c": `["common.c"]`,
1167 }),
1168 },
Liz Kammere3e4a5f2021-05-10 11:39:53 -04001169 })
1170}
1171
1172func TestCcLibraryStaticProductVariableArchSpecificSelects(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001173 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1174 Description: "cc_library_static arch-specific product variable selects",
1175 Filesystem: map[string]string{},
1176 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammere3e4a5f2021-05-10 11:39:53 -04001177cc_library_static {
1178 name: "foo_static",
1179 srcs: ["common.c"],
1180 product_variables: {
1181 malloc_not_svelte: {
1182 cflags: ["-Wmalloc_not_svelte"],
1183 },
1184 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001185 arch: {
1186 arm64: {
1187 product_variables: {
1188 malloc_not_svelte: {
1189 cflags: ["-Warm64_malloc_not_svelte"],
1190 },
1191 },
1192 },
1193 },
1194 multilib: {
1195 lib32: {
1196 product_variables: {
1197 malloc_not_svelte: {
1198 cflags: ["-Wlib32_malloc_not_svelte"],
1199 },
1200 },
1201 },
1202 },
1203 target: {
1204 android: {
1205 product_variables: {
1206 malloc_not_svelte: {
1207 cflags: ["-Wandroid_malloc_not_svelte"],
1208 },
1209 },
1210 }
1211 },
1212 include_build_directory: false,
Liz Kammere3e4a5f2021-05-10 11:39:53 -04001213} `,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001214 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001215 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001216 "copts": `select({
Liz Kammere3e4a5f2021-05-10 11:39:53 -04001217 "//build/bazel/product_variables:malloc_not_svelte": ["-Wmalloc_not_svelte"],
1218 "//conditions:default": [],
Liz Kammer6fd7b3f2021-05-06 13:54:29 -04001219 }) + select({
Liz Kammere3e4a5f2021-05-10 11:39:53 -04001220 "//build/bazel/product_variables:malloc_not_svelte-android": ["-Wandroid_malloc_not_svelte"],
1221 "//conditions:default": [],
1222 }) + select({
1223 "//build/bazel/product_variables:malloc_not_svelte-arm": ["-Wlib32_malloc_not_svelte"],
1224 "//conditions:default": [],
1225 }) + select({
1226 "//build/bazel/product_variables:malloc_not_svelte-arm64": ["-Warm64_malloc_not_svelte"],
1227 "//conditions:default": [],
1228 }) + select({
1229 "//build/bazel/product_variables:malloc_not_svelte-x86": ["-Wlib32_malloc_not_svelte"],
Liz Kammer6fd7b3f2021-05-06 13:54:29 -04001230 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001231 })`,
1232 "srcs_c": `["common.c"]`,
1233 }),
1234 },
Liz Kammer6fd7b3f2021-05-06 13:54:29 -04001235 })
1236}
Liz Kammerba7a9c52021-05-26 08:45:30 -04001237
1238func TestCcLibraryStaticProductVariableStringReplacement(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001239 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1240 Description: "cc_library_static product variable string replacement",
1241 Filesystem: map[string]string{},
1242 Blueprint: soongCcLibraryStaticPreamble + `
Liz Kammerba7a9c52021-05-26 08:45:30 -04001243cc_library_static {
1244 name: "foo_static",
Chris Parsons69fa9f92021-07-13 11:47:44 -04001245 srcs: ["common.S"],
Liz Kammerba7a9c52021-05-26 08:45:30 -04001246 product_variables: {
1247 platform_sdk_version: {
1248 asflags: ["-DPLATFORM_SDK_VERSION=%d"],
1249 },
1250 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001251 include_build_directory: false,
Liz Kammerba7a9c52021-05-26 08:45:30 -04001252} `,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001253 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001254 MakeBazelTarget("cc_library_static", "foo_static", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001255 "asflags": `select({
Liz Kammerba7a9c52021-05-26 08:45:30 -04001256 "//build/bazel/product_variables:platform_sdk_version": ["-DPLATFORM_SDK_VERSION=$(Platform_sdk_version)"],
1257 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001258 })`,
1259 "srcs_as": `["common.S"]`,
1260 }),
1261 },
Liz Kammerba7a9c52021-05-26 08:45:30 -04001262 })
1263}
Chris Parsons51f8c392021-08-03 21:01:05 -04001264
1265func TestStaticLibrary_SystemSharedLibsRootEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001266 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1267 Description: "cc_library_static system_shared_lib empty root",
1268 Blueprint: soongCcLibraryStaticPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001269cc_library_static {
1270 name: "root_empty",
Liz Kammer8337ea42021-09-10 10:06:32 -04001271 system_shared_libs: [],
1272 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001273}
1274`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001275 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001276 MakeBazelTarget("cc_library_static", "root_empty", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001277 "system_dynamic_deps": `[]`,
1278 }),
1279 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001280 })
1281}
1282
1283func TestStaticLibrary_SystemSharedLibsStaticEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001284 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1285 Description: "cc_library_static system_shared_lib empty static default",
1286 Blueprint: soongCcLibraryStaticPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001287cc_defaults {
1288 name: "static_empty_defaults",
1289 static: {
Liz Kammer8337ea42021-09-10 10:06:32 -04001290 system_shared_libs: [],
1291 },
1292 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001293}
1294cc_library_static {
1295 name: "static_empty",
Liz Kammer8337ea42021-09-10 10:06:32 -04001296 defaults: ["static_empty_defaults"],
Chris Parsons51f8c392021-08-03 21:01:05 -04001297}
1298`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001299 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001300 MakeBazelTarget("cc_library_static", "static_empty", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001301 "system_dynamic_deps": `[]`,
1302 }),
1303 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001304 })
1305}
1306
1307func TestStaticLibrary_SystemSharedLibsBionicEmpty(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001308 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1309 Description: "cc_library_static system_shared_lib empty for bionic variant",
1310 Blueprint: soongCcLibraryStaticPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001311cc_library_static {
1312 name: "target_bionic_empty",
1313 target: {
1314 bionic: {
1315 system_shared_libs: [],
1316 },
1317 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001318 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001319}
1320`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001321 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001322 MakeBazelTarget("cc_library_static", "target_bionic_empty", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001323 "system_dynamic_deps": `[]`,
1324 }),
1325 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001326 })
1327}
1328
1329func TestStaticLibrary_SystemSharedLibsLinuxBionicEmpty(t *testing.T) {
1330 // Note that this behavior is technically incorrect (it's a simplification).
1331 // The correct behavior would be if bp2build wrote `system_dynamic_deps = []`
1332 // only for linux_bionic, but `android` had `["libc", "libdl", "libm"].
1333 // b/195791252 tracks the fix.
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001334 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1335 Description: "cc_library_static system_shared_lib empty for linux_bionic variant",
1336 Blueprint: soongCcLibraryStaticPreamble + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001337cc_library_static {
1338 name: "target_linux_bionic_empty",
1339 target: {
1340 linux_bionic: {
1341 system_shared_libs: [],
1342 },
1343 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001344 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001345}
1346`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001347 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001348 MakeBazelTarget("cc_library_static", "target_linux_bionic_empty", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001349 "system_dynamic_deps": `[]`,
1350 }),
1351 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001352 })
1353}
1354
1355func TestStaticLibrary_SystemSharedLibsBionic(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001356 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1357 Description: "cc_library_static system_shared_libs set for bionic variant",
1358 Blueprint: soongCcLibraryStaticPreamble +
Liz Kammerbe46fcc2021-11-01 15:32:43 -04001359 simpleModuleDoNotConvertBp2build("cc_library", "libc") + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001360cc_library_static {
1361 name: "target_bionic",
1362 target: {
1363 bionic: {
1364 system_shared_libs: ["libc"],
1365 },
1366 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001367 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001368}
1369`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001370 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001371 MakeBazelTarget("cc_library_static", "target_bionic", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001372 "system_dynamic_deps": `select({
Chris Parsons2dde0cb2021-10-01 14:45:30 -04001373 "//build/bazel/platforms/os:android": [":libc"],
1374 "//build/bazel/platforms/os:linux_bionic": [":libc"],
Chris Parsons51f8c392021-08-03 21:01:05 -04001375 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001376 })`,
1377 }),
1378 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001379 })
1380}
1381
1382func TestStaticLibrary_SystemSharedLibsLinuxRootAndLinuxBionic(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001383 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1384 Description: "cc_library_static system_shared_libs set for root and linux_bionic variant",
1385 Blueprint: soongCcLibraryStaticPreamble +
Liz Kammerbe46fcc2021-11-01 15:32:43 -04001386 simpleModuleDoNotConvertBp2build("cc_library", "libc") +
1387 simpleModuleDoNotConvertBp2build("cc_library", "libm") + `
Chris Parsons51f8c392021-08-03 21:01:05 -04001388cc_library_static {
1389 name: "target_linux_bionic",
Liz Kammer8337ea42021-09-10 10:06:32 -04001390 system_shared_libs: ["libc"],
Chris Parsons51f8c392021-08-03 21:01:05 -04001391 target: {
1392 linux_bionic: {
1393 system_shared_libs: ["libm"],
1394 },
1395 },
Liz Kammer8337ea42021-09-10 10:06:32 -04001396 include_build_directory: false,
Chris Parsons51f8c392021-08-03 21:01:05 -04001397}
1398`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001399 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001400 MakeBazelTarget("cc_library_static", "target_linux_bionic", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001401 "system_dynamic_deps": `[":libc"] + select({
Chris Parsons51f8c392021-08-03 21:01:05 -04001402 "//build/bazel/platforms/os:linux_bionic": [":libm"],
1403 "//conditions:default": [],
Liz Kammer78cfdaa2021-11-08 12:56:31 -05001404 })`,
1405 }),
1406 },
Chris Parsons51f8c392021-08-03 21:01:05 -04001407 })
1408}
Liz Kammer12615db2021-09-28 09:19:17 -04001409
Liz Kammer54309532021-12-14 12:21:22 -05001410func TestCcLibrarystatic_SystemSharedLibUsedAsDep(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001411 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1412 Description: "cc_library_static system_shared_lib empty for linux_bionic variant",
1413 Blueprint: soongCcLibraryStaticPreamble +
Liz Kammer54309532021-12-14 12:21:22 -05001414 simpleModuleDoNotConvertBp2build("cc_library", "libc") + `
Liz Kammer91487d42022-09-13 11:27:11 -04001415
1416cc_library {
1417 name: "libm",
1418 stubs: {
1419 symbol_file: "libm.map.txt",
1420 versions: ["current"],
1421 },
1422 bazel_module: { bp2build_available: false },
1423}
1424
Liz Kammer54309532021-12-14 12:21:22 -05001425cc_library_static {
1426 name: "used_in_bionic_oses",
1427 target: {
1428 android: {
1429 shared_libs: ["libc"],
1430 },
1431 linux_bionic: {
1432 shared_libs: ["libc"],
1433 },
1434 },
1435 include_build_directory: false,
1436}
1437
1438cc_library_static {
1439 name: "all",
1440 shared_libs: ["libc"],
1441 include_build_directory: false,
1442}
1443
1444cc_library_static {
1445 name: "keep_for_empty_system_shared_libs",
1446 shared_libs: ["libc"],
Liz Kammer91487d42022-09-13 11:27:11 -04001447 system_shared_libs: [],
1448 include_build_directory: false,
1449}
1450
1451cc_library_static {
1452 name: "used_with_stubs",
1453 shared_libs: ["libm"],
1454 include_build_directory: false,
1455}
1456
1457cc_library_static {
1458 name: "keep_with_stubs",
1459 shared_libs: ["libm"],
1460 system_shared_libs: [],
Liz Kammer54309532021-12-14 12:21:22 -05001461 include_build_directory: false,
1462}
1463`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001464 ExpectedBazelTargets: []string{
Liz Kammer43345e22022-08-04 13:57:35 -04001465 MakeBazelTarget("cc_library_static", "all", AttrNameToString{}),
Alixe06d75b2022-08-31 18:28:19 +00001466 MakeBazelTarget("cc_library_static", "keep_for_empty_system_shared_libs", AttrNameToString{
Liz Kammer54309532021-12-14 12:21:22 -05001467 "implementation_dynamic_deps": `[":libc"]`,
1468 "system_dynamic_deps": `[]`,
1469 }),
Liz Kammer91487d42022-09-13 11:27:11 -04001470 MakeBazelTarget("cc_library_static", "keep_with_stubs", AttrNameToString{
1471 "implementation_dynamic_deps": `select({
1472 "//build/bazel/rules/apex:android-in_apex": [":libm_stub_libs_current"],
1473 "//conditions:default": [":libm"],
1474 })`,
1475 "system_dynamic_deps": `[]`,
1476 }),
Alixe06d75b2022-08-31 18:28:19 +00001477 MakeBazelTarget("cc_library_static", "used_in_bionic_oses", AttrNameToString{}),
Liz Kammer91487d42022-09-13 11:27:11 -04001478 MakeBazelTarget("cc_library_static", "used_with_stubs", AttrNameToString{}),
Liz Kammer54309532021-12-14 12:21:22 -05001479 },
1480 })
1481}
1482
Liz Kammer12615db2021-09-28 09:19:17 -04001483func TestCcLibraryStaticProto(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001484 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1485 Blueprint: soongCcProtoPreamble + `cc_library_static {
Liz Kammer12615db2021-09-28 09:19:17 -04001486 name: "foo",
1487 srcs: ["foo.proto"],
1488 proto: {
Liz Kammer12615db2021-09-28 09:19:17 -04001489 export_proto_headers: true,
1490 },
1491 include_build_directory: false,
1492}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001493 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001494 MakeBazelTarget("proto_library", "foo_proto", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04001495 "srcs": `["foo.proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00001496 }), MakeBazelTarget("cc_lite_proto_library", "foo_cc_proto_lite", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04001497 "deps": `[":foo_proto"]`,
Alixe06d75b2022-08-31 18:28:19 +00001498 }), MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
Liz Kammer12615db2021-09-28 09:19:17 -04001499 "deps": `[":libprotobuf-cpp-lite"]`,
1500 "whole_archive_deps": `[":foo_cc_proto_lite"]`,
1501 }),
1502 },
1503 })
1504}
Rupert Shuttleworth484aa252021-12-10 07:22:53 -05001505
1506func TestCcLibraryStaticUseVersionLib(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001507 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
Liz Kammerbaced712022-09-16 09:01:29 -04001508 Filesystem: map[string]string{
1509 soongCcVersionLibBpPath: soongCcVersionLibBp,
1510 },
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001511 Blueprint: soongCcProtoPreamble + `cc_library_static {
Rupert Shuttleworth484aa252021-12-10 07:22:53 -05001512 name: "foo",
1513 use_version_lib: true,
Liz Kammerbaced712022-09-16 09:01:29 -04001514 static_libs: ["libbuildversion"],
Rupert Shuttleworth484aa252021-12-10 07:22:53 -05001515 include_build_directory: false,
1516}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001517 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001518 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
Liz Kammerbaced712022-09-16 09:01:29 -04001519 "implementation_whole_archive_deps": `["//build/soong/cc/libbuildversion:libbuildversion"]`,
1520 }),
1521 },
1522 })
1523}
1524
1525func TestCcLibraryStaticUseVersionLibHasDep(t *testing.T) {
1526 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1527 Filesystem: map[string]string{
1528 soongCcVersionLibBpPath: soongCcVersionLibBp,
1529 },
1530 Blueprint: soongCcProtoPreamble + `cc_library_static {
1531 name: "foo",
1532 use_version_lib: true,
1533 whole_static_libs: ["libbuildversion"],
1534 include_build_directory: false,
1535}`,
1536 ExpectedBazelTargets: []string{
1537 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
1538 "whole_archive_deps": `["//build/soong/cc/libbuildversion:libbuildversion"]`,
Rupert Shuttleworth484aa252021-12-10 07:22:53 -05001539 }),
1540 },
1541 })
1542}
Liz Kammercac7f692021-12-16 14:19:32 -05001543
1544func TestCcLibraryStaticStdInFlags(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001545 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1546 Blueprint: soongCcProtoPreamble + `cc_library_static {
Liz Kammercac7f692021-12-16 14:19:32 -05001547 name: "foo",
1548 cflags: ["-std=candcpp"],
1549 conlyflags: ["-std=conly"],
1550 cppflags: ["-std=cpp"],
1551 include_build_directory: false,
1552}`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001553 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001554 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
Liz Kammercac7f692021-12-16 14:19:32 -05001555 "conlyflags": `["-std=conly"]`,
1556 "cppflags": `["-std=cpp"]`,
1557 }),
1558 },
1559 })
1560}
Liz Kammer7128d382022-05-12 11:42:33 -04001561
1562func TestCcLibraryStaticStl(t *testing.T) {
1563 testCases := []struct {
1564 desc string
1565 prop string
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001566 attr AttrNameToString
Liz Kammer7128d382022-05-12 11:42:33 -04001567 }{
1568 {
1569 desc: "c++_shared deduped to libc++",
1570 prop: `stl: "c++_shared",`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001571 attr: AttrNameToString{
Liz Kammer7128d382022-05-12 11:42:33 -04001572 "stl": `"libc++"`,
1573 },
1574 },
1575 {
1576 desc: "libc++ to libc++",
1577 prop: `stl: "libc++",`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001578 attr: AttrNameToString{
Liz Kammer7128d382022-05-12 11:42:33 -04001579 "stl": `"libc++"`,
1580 },
1581 },
1582 {
1583 desc: "c++_static to libc++_static",
1584 prop: `stl: "c++_static",`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001585 attr: AttrNameToString{
Liz Kammer7128d382022-05-12 11:42:33 -04001586 "stl": `"libc++_static"`,
1587 },
1588 },
1589 {
1590 desc: "libc++_static to libc++_static",
1591 prop: `stl: "libc++_static",`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001592 attr: AttrNameToString{
Liz Kammer7128d382022-05-12 11:42:33 -04001593 "stl": `"libc++_static"`,
1594 },
1595 },
1596 {
1597 desc: "system to system",
1598 prop: `stl: "system",`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001599 attr: AttrNameToString{
Liz Kammer7128d382022-05-12 11:42:33 -04001600 "stl": `"system"`,
1601 },
1602 },
1603 {
1604 desc: "none to none",
1605 prop: `stl: "none",`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001606 attr: AttrNameToString{
Liz Kammer7128d382022-05-12 11:42:33 -04001607 "stl": `"none"`,
1608 },
1609 },
1610 {
1611 desc: "empty to empty",
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001612 attr: AttrNameToString{},
Liz Kammer7128d382022-05-12 11:42:33 -04001613 },
1614 }
1615 for _, tc := range testCases {
1616 t.Run(tc.desc, func(*testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001617 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1618 Blueprint: fmt.Sprintf(`cc_library_static {
Liz Kammer7128d382022-05-12 11:42:33 -04001619 name: "foo",
1620 include_build_directory: false,
1621 %s
1622}`, tc.prop),
Sam Delmerico3177a6e2022-06-21 19:28:33 +00001623 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001624 MakeBazelTarget("cc_library_static", "foo", tc.attr),
Liz Kammer7128d382022-05-12 11:42:33 -04001625 },
1626 })
1627 })
1628 }
1629}
Cole Faust6b29f592022-08-09 09:50:56 -07001630
1631func TestCCLibraryStaticRuntimeDeps(t *testing.T) {
1632 runCcLibrarySharedTestCase(t, Bp2buildTestCase{
1633 Blueprint: `cc_library_shared {
1634 name: "bar",
1635}
1636
1637cc_library_static {
1638 name: "foo",
1639 runtime_libs: ["foo"],
1640}`,
1641 ExpectedBazelTargets: []string{
Alixe06d75b2022-08-31 18:28:19 +00001642 MakeBazelTarget("cc_library_shared", "bar", AttrNameToString{
Cole Faust6b29f592022-08-09 09:50:56 -07001643 "local_includes": `["."]`,
1644 }),
Alixe06d75b2022-08-31 18:28:19 +00001645 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
Cole Faust6b29f592022-08-09 09:50:56 -07001646 "runtime_deps": `[":foo"]`,
1647 "local_includes": `["."]`,
1648 }),
1649 },
1650 })
1651}
Trevor Radcliffecee4e052022-09-06 19:31:25 +00001652
1653func TestCcLibraryStaticWithSyspropSrcs(t *testing.T) {
1654 runCcLibraryTestCase(t, Bp2buildTestCase{
1655 Description: "cc_library_static with sysprop sources",
1656 Blueprint: `
1657cc_library_static {
1658 name: "foo",
1659 srcs: [
1660 "bar.sysprop",
1661 "baz.sysprop",
1662 "blah.cpp",
1663 ],
1664 min_sdk_version: "5",
1665}`,
1666 ExpectedBazelTargets: []string{
1667 MakeBazelTarget("sysprop_library", "foo_sysprop_library", AttrNameToString{
1668 "srcs": `[
1669 "bar.sysprop",
1670 "baz.sysprop",
1671 ]`,
1672 }),
1673 MakeBazelTarget("cc_sysprop_library_static", "foo_cc_sysprop_library_static", AttrNameToString{
1674 "dep": `":foo_sysprop_library"`,
1675 "min_sdk_version": `"5"`,
1676 }),
1677 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
1678 "srcs": `["blah.cpp"]`,
1679 "local_includes": `["."]`,
1680 "min_sdk_version": `"5"`,
1681 "whole_archive_deps": `[":foo_cc_sysprop_library_static"]`,
1682 }),
1683 },
1684 })
1685}
1686
1687func TestCcLibraryStaticWithSyspropSrcsSomeConfigs(t *testing.T) {
1688 runCcLibraryTestCase(t, Bp2buildTestCase{
1689 Description: "cc_library_static with sysprop sources in some configs but not others",
1690 Blueprint: `
1691cc_library_static {
1692 name: "foo",
1693 srcs: [
1694 "blah.cpp",
1695 ],
1696 target: {
1697 android: {
1698 srcs: ["bar.sysprop"],
1699 },
1700 },
1701 min_sdk_version: "5",
1702}`,
1703 ExpectedBazelTargets: []string{
1704 MakeBazelTarget("sysprop_library", "foo_sysprop_library", AttrNameToString{
1705 "srcs": `select({
1706 "//build/bazel/platforms/os:android": ["bar.sysprop"],
1707 "//conditions:default": [],
1708 })`,
1709 }),
1710 MakeBazelTarget("cc_sysprop_library_static", "foo_cc_sysprop_library_static", AttrNameToString{
1711 "dep": `":foo_sysprop_library"`,
1712 "min_sdk_version": `"5"`,
1713 }),
1714 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
1715 "srcs": `["blah.cpp"]`,
1716 "local_includes": `["."]`,
1717 "min_sdk_version": `"5"`,
1718 "whole_archive_deps": `select({
1719 "//build/bazel/platforms/os:android": [":foo_cc_sysprop_library_static"],
1720 "//conditions:default": [],
1721 })`,
1722 }),
1723 },
1724 })
1725}
Trevor Radcliffedb7e0262022-10-28 16:48:18 +00001726
1727func TestCcLibraryStaticWithIntegerOverflowProperty(t *testing.T) {
1728 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1729 Description: "cc_library_static has correct features when integer_overflow property is provided",
1730 Blueprint: `
1731cc_library_static {
1732 name: "foo",
1733 sanitize: {
1734 integer_overflow: true,
1735 },
1736}
1737`,
1738 ExpectedBazelTargets: []string{
1739 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
1740 "features": `["ubsan_integer_overflow"]`,
1741 "local_includes": `["."]`,
1742 }),
1743 },
1744 })
1745}
1746
1747func TestCcLibraryStaticWithMiscUndefinedProperty(t *testing.T) {
1748 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1749 Description: "cc_library_static has correct features when misc_undefined property is provided",
1750 Blueprint: `
1751cc_library_static {
1752 name: "foo",
1753 sanitize: {
1754 misc_undefined: ["undefined", "nullability"],
1755 },
1756}
1757`,
1758 ExpectedBazelTargets: []string{
1759 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
1760 "features": `[
1761 "ubsan_undefined",
1762 "ubsan_nullability",
1763 ]`,
1764 "local_includes": `["."]`,
1765 }),
1766 },
1767 })
1768}
1769
1770func TestCcLibraryStaticWithUBSanPropertiesArchSpecific(t *testing.T) {
1771 runCcLibraryStaticTestCase(t, Bp2buildTestCase{
1772 Description: "cc_library_static has correct feature select when UBSan props are specified in arch specific blocks",
1773 Blueprint: `
1774cc_library_static {
1775 name: "foo",
1776 sanitize: {
1777 misc_undefined: ["undefined", "nullability"],
1778 },
1779 target: {
1780 android: {
1781 sanitize: {
1782 misc_undefined: ["alignment"],
1783 },
1784 },
1785 linux_glibc: {
1786 sanitize: {
1787 integer_overflow: true,
1788 },
1789 },
1790 },
1791}
1792`,
1793 ExpectedBazelTargets: []string{
1794 MakeBazelTarget("cc_library_static", "foo", AttrNameToString{
1795 "features": `[
1796 "ubsan_undefined",
1797 "ubsan_nullability",
1798 ] + select({
1799 "//build/bazel/platforms/os:android": ["ubsan_alignment"],
1800 "//build/bazel/platforms/os:linux_glibc": ["ubsan_integer_overflow"],
1801 "//conditions:default": [],
1802 })`,
1803 "local_includes": `["."]`,
1804 }),
1805 },
1806 })
1807}