Skip to content

Commit d9d0ef3

Browse files
authored
Merge pull request #2693 from SimplyDanny/fix-bazel-tests
2 parents 89cd4f6 + 0430aab commit d9d0ef3

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

BUILD.bazel

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,19 @@ swift_syntax_library(
242242
],
243243
)
244244

245+
swift_syntax_library(
246+
name = "SwiftSyntaxMacrosGenericTestSupport",
247+
testonly = True,
248+
deps = [
249+
":SwiftDiagnostics",
250+
":SwiftIDEUtils",
251+
":SwiftParser",
252+
":SwiftSyntaxMacroExpansion",
253+
":SwiftSyntaxMacros",
254+
":_SwiftSyntaxGenericTestSupport",
255+
],
256+
)
257+
245258
swift_syntax_library(
246259
name = "SwiftSyntaxMacrosTestSupport",
247260
testonly = True,
@@ -251,6 +264,7 @@ swift_syntax_library(
251264
":SwiftParser",
252265
":SwiftSyntaxMacroExpansion",
253266
":SwiftSyntaxMacros",
267+
":SwiftSyntaxMacrosGenericTestSupport",
254268
":_SwiftSyntaxTestSupport",
255269
],
256270
)
@@ -299,6 +313,13 @@ cc_library(
299313
visibility = ["//visibility:private"],
300314
)
301315

316+
swift_syntax_library(
317+
name = "_SwiftSyntaxGenericTestSupport",
318+
testonly = True,
319+
deps = [
320+
],
321+
)
322+
302323
swift_syntax_library(
303324
name = "_SwiftSyntaxTestSupport",
304325
testonly = True,
@@ -307,6 +328,7 @@ swift_syntax_library(
307328
":SwiftSyntax",
308329
":SwiftSyntaxBuilder",
309330
":SwiftSyntaxMacroExpansion",
331+
":_SwiftSyntaxGenericTestSupport",
310332
],
311333
)
312334

0 commit comments

Comments
 (0)