Skip to content

Commit db88373

Browse files
authored
[bazel] Add Macro related libraries (#1499)
1 parent 6134c24 commit db88373

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

BUILD.bazel

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,42 @@ swift_syntax_library(
1414
],
1515
)
1616

17+
swift_syntax_library(
18+
name = "SwiftCompilerPlugin",
19+
deps = [
20+
":SwiftCompilerPluginMessageHandling",
21+
":SwiftSyntaxMacros",
22+
],
23+
)
24+
25+
swift_syntax_library(
26+
name = "SwiftCompilerPluginMessageHandling",
27+
deps = [
28+
":SwiftDiagnostics",
29+
":SwiftOperators",
30+
":SwiftParser",
31+
":SwiftSyntax",
32+
":SwiftSyntaxMacros",
33+
],
34+
)
35+
1736
swift_syntax_library(
1837
name = "SwiftDiagnostics",
1938
deps = [
2039
":SwiftSyntax",
2140
],
2241
)
2342

43+
swift_syntax_library(
44+
name = "SwiftSyntaxMacros",
45+
deps = [
46+
":SwiftDiagnostics",
47+
":SwiftParser",
48+
":SwiftSyntax",
49+
":SwiftSyntaxBuilder",
50+
],
51+
)
52+
2453
swift_syntax_library(
2554
name = "SwiftParser",
2655
deps = [

0 commit comments

Comments
 (0)