File tree Expand file tree Collapse file tree 1 file changed +22
-19
lines changed
utils/bazel/llvm-project-overlay/clang Expand file tree Collapse file tree 1 file changed +22
-19
lines changed Original file line number Diff line number Diff line change @@ -1284,24 +1284,6 @@ cc_library(
1284
1284
],
1285
1285
)
1286
1286
1287
- cc_library (
1288
- name = "symbol_graph" ,
1289
- srcs = glob ([
1290
- "lib/SymbolGraph/*.cpp" ,
1291
- ]),
1292
- hdrs = glob ([
1293
- "include/clang/SymbolGraph/*.h" ,
1294
- ]),
1295
- includes = ["include" ],
1296
- deps = [
1297
- ":ast" ,
1298
- ":basic" ,
1299
- ":frontend" ,
1300
- ":index" ,
1301
- "//llvm:Support" ,
1302
- ],
1303
- )
1304
-
1305
1287
gentbl (
1306
1288
name = "driver_options_inc_gen" ,
1307
1289
tbl_outs = [(
@@ -1731,10 +1713,10 @@ cc_library(
1731
1713
":codegen" ,
1732
1714
":config" ,
1733
1715
":driver" ,
1716
+ ":extract_api" ,
1734
1717
":frontend" ,
1735
1718
":frontend_rewrite" ,
1736
1719
":static_analyzer_frontend" ,
1737
- ":symbol_graph" ,
1738
1720
"//llvm:Option" ,
1739
1721
"//llvm:Support" ,
1740
1722
],
@@ -2161,3 +2143,24 @@ cc_binary(
2161
2143
"//llvm:Support" ,
2162
2144
],
2163
2145
)
2146
+
2147
+ cc_library (
2148
+ name = "extract_api" ,
2149
+ srcs = glob ([
2150
+ "lib/ExtractAPI/*.cpp" ,
2151
+ "lib/ExtractAPI/*.h" ,
2152
+ "lib/ExtractAPI/**/*.cpp" ,
2153
+ "lib/ExtractAPI/**/*.h" ,
2154
+ ]),
2155
+ hdrs = glob (["include/clang/ExtractAPI/**/*.h" ]),
2156
+ includes = ["include" ],
2157
+ visibility = ["//third_party/llvm/google3_users:clang_api_users" ],
2158
+ deps = [
2159
+ ":ast" ,
2160
+ ":index" ,
2161
+ ":basic" ,
2162
+ ":frontend" ,
2163
+ "//third_party/llvm/llvm-project/llvm:Option" ,
2164
+ "//third_party/llvm/llvm-project/llvm:Support" ,
2165
+ ],
2166
+ )
You can’t perform that action at this time.
0 commit comments