Skip to content

Commit e92c961

Browse files
authored
[bazel] Add remaining libraries (#1535)
These were the only ones not already added, in case folks need them
1 parent 7aacf50 commit e92c961

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

BUILD.bazel

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ load("//utils/bazel:swift_syntax_library.bzl", "swift_syntax_library")
22

33
package(default_visibility = ["//visibility:public"])
44

5+
swift_syntax_library(
6+
name = "IDEUtils",
7+
deps = [
8+
":SwiftSyntax",
9+
],
10+
)
11+
512
swift_syntax_library(
613
name = "SwiftSyntax",
714
deps = [],
@@ -87,3 +94,19 @@ swift_syntax_library(
8794
":SwiftSyntax",
8895
],
8996
)
97+
98+
swift_syntax_library(
99+
name = "SwiftSyntaxParser",
100+
deps = [
101+
":SwiftParser",
102+
":SwiftSyntax",
103+
],
104+
)
105+
106+
swift_syntax_library(
107+
name = "SwiftRefactor",
108+
deps = [
109+
":SwiftParser",
110+
":SwiftSyntax",
111+
],
112+
)

0 commit comments

Comments
 (0)