We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fee211 commit bd2f7bbCopy full SHA for bd2f7bb
utils/bazel/llvm-project-overlay/clang/BUILD.bazel
@@ -1843,6 +1843,7 @@ cc_library(
1843
":driver",
1844
":driver_options_inc_gen",
1845
":edit",
1846
+ ":install_api",
1847
":lex",
1848
":parse",
1849
":sema",
@@ -2052,6 +2053,22 @@ cc_library(
2052
2053
],
2054
)
2055
2056
+cc_library(
2057
+ name = "install_api",
2058
+ srcs = glob([
2059
+ "lib/InstallAPI/*.cpp",
2060
+ ]),
2061
+ hdrs = glob([
2062
+ "include/clang/InstallAPI/*.h",
2063
2064
+ includes = ["include"],
2065
+ deps = [
2066
+ ":ast",
2067
+ ":support",
2068
+ "//llvm:TextAPI",
2069
+ ],
2070
+)
2071
+
2072
cc_library(
2073
name = "serialization",
2074
srcs = [
0 commit comments