Skip to content

Commit 0530f3e

Browse files
authored
[bazel] Add new libraries (#2919)
1 parent 8c832fe commit 0530f3e

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

BUILD.bazel

+43
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,42 @@ swift_syntax_test(
8383
],
8484
)
8585

86+
swift_syntax_library(
87+
name = "SwiftIfConfig",
88+
deps = [
89+
":SwiftDiagnostics",
90+
":SwiftOperators",
91+
":SwiftSyntax",
92+
":SwiftSyntaxBuilder",
93+
],
94+
)
95+
96+
swift_syntax_test(
97+
name = "SwiftIfConfigTest",
98+
deps = [
99+
":SwiftIfConfig",
100+
":SwiftParser",
101+
":SwiftSyntaxMacrosGenericTestSupport",
102+
":_SwiftSyntaxTestSupport",
103+
],
104+
)
105+
106+
swift_syntax_library(
107+
name = "SwiftLexicalLookup",
108+
deps = [
109+
":SwiftIfConfig",
110+
":SwiftSyntax",
111+
],
112+
)
113+
114+
swift_syntax_test(
115+
name = "SwiftLexicalLookupTest",
116+
deps = [
117+
":SwiftLexicalLookup",
118+
":_SwiftSyntaxTestSupport",
119+
],
120+
)
121+
86122
swift_syntax_library(
87123
name = "SwiftLibraryPluginProvider",
88124
deps = [
@@ -196,6 +232,13 @@ swift_syntax_library(
196232
],
197233
)
198234

235+
swift_syntax_library(
236+
name = "SwiftSyntax601",
237+
srcs = glob(["Sources/VersionMarkerModules/SwiftSyntax601/**/*.swift"]),
238+
deps = [
239+
],
240+
)
241+
199242
swift_syntax_library(
200243
name = "SwiftSyntaxBuilder",
201244
deps = [

0 commit comments

Comments
 (0)