File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed
utils/bazel/llvm-project-overlay/clang Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change @@ -2353,6 +2353,17 @@ cc_library(
2353
2353
],
2354
2354
)
2355
2355
2356
+ cc_binary (
2357
+ name = "apinotes-test" ,
2358
+ testonly = 1 ,
2359
+ srcs = ["tools/apinotes-test/APINotesTest.cpp" ],
2360
+ stamp = 0 ,
2361
+ deps = [
2362
+ ":apinotes" ,
2363
+ "//llvm:Support" ,
2364
+ ],
2365
+ )
2366
+
2356
2367
cc_binary (
2357
2368
name = "arcmt-test" ,
2358
2369
testonly = 1 ,
@@ -2493,6 +2504,11 @@ binary_alias(
2493
2504
binary = ":clang" ,
2494
2505
)
2495
2506
2507
+ binary_alias (
2508
+ name = "clang-cl" ,
2509
+ binary = ":clang" ,
2510
+ )
2511
+
2496
2512
cc_binary (
2497
2513
name = "clang-check" ,
2498
2514
srcs = ["tools/clang-check/ClangCheck.cpp" ],
@@ -2725,3 +2741,40 @@ cc_library(
2725
2741
"//llvm:TargetParser" ,
2726
2742
],
2727
2743
)
2744
+
2745
+ cc_binary (
2746
+ name = "clang-fuzzer-dictionary" ,
2747
+ srcs = ["tools/clang-fuzzer/dictionary/dictionary.c" ],
2748
+ deps = [":basic" ],
2749
+ )
2750
+
2751
+ genrule (
2752
+ name = "fuzzer-dictionary" ,
2753
+ outs = ["fuzzer-dictionary.txt" ],
2754
+ cmd = "$(location :clang-fuzzer-dictionary) > $@" ,
2755
+ tools = [":clang-fuzzer-dictionary" ],
2756
+ )
2757
+
2758
+ cc_library (
2759
+ name = "handle-cxx" ,
2760
+ srcs = ["tools/clang-fuzzer/handle-cxx/handle_cxx.cpp" ],
2761
+ hdrs = ["tools/clang-fuzzer/handle-cxx/handle_cxx.h" ],
2762
+ deps = [
2763
+ ":codegen" ,
2764
+ ":frontend" ,
2765
+ ":lex" ,
2766
+ ":tooling" ,
2767
+ "//llvm:Option" ,
2768
+ "//llvm:Support" ,
2769
+ ],
2770
+ )
2771
+
2772
+ cc_library (
2773
+ name = "clang-fuzzer-initialize" ,
2774
+ srcs = ["tools/clang-fuzzer/fuzzer-initialize/fuzzer_initialize.cpp" ],
2775
+ hdrs = ["tools/clang-fuzzer/fuzzer-initialize/fuzzer_initialize.h" ],
2776
+ deps = [
2777
+ "//llvm:Core" ,
2778
+ "//llvm:Support" ,
2779
+ ],
2780
+ )
You can’t perform that action at this time.
0 commit comments