File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
utils/bazel/llvm-project-overlay/lldb/source/Plugins Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -826,6 +826,19 @@ cc_library(
826
826
],
827
827
)
828
828
829
+ gentbl_cc_library (
830
+ name = "LanguageCPlusPlusProperties" ,
831
+ strip_include_prefix = "Language/CPlusPlus" ,
832
+ tbl_outs = {
833
+ "Language/CPlusPlus/LanguageCPlusPlusProperties.inc" : ["-gen-lldb-property-defs" ],
834
+ "Language/CPlusPlus/LanguageCPlusPlusPropertiesEnum.inc" : ["-gen-lldb-property-enum-defs" ],
835
+ },
836
+ tblgen = "//lldb:lldb-tblgen" ,
837
+ td_file = "Language/CPlusPlus/LanguageCPlusPlusProperties.td" ,
838
+ deps = ["//lldb:CoreTdFiles" ],
839
+ )
840
+
841
+
829
842
cc_library (
830
843
name = "PluginCPlusPlusLanguageHeaders" ,
831
844
hdrs = glob (["Language/CPlusPlus/*.h" ]),
@@ -842,6 +855,7 @@ cc_library(
842
855
srcs = glob (["Language/CPlusPlus/*.cpp" ]),
843
856
includes = [".." ],
844
857
deps = [
858
+ ":LanguageCPlusPlusProperties" ,
845
859
":PluginCPPRuntime" ,
846
860
":PluginCPlusPlusLanguageHeaders" ,
847
861
":PluginClangCommon" ,
@@ -852,6 +866,7 @@ cc_library(
852
866
"//lldb:Core" ,
853
867
"//lldb:DataFormatters" ,
854
868
"//lldb:Headers" ,
869
+ "//lldb:InterpreterHeaders" ,
855
870
"//lldb:Host" ,
856
871
"//lldb:Symbol" ,
857
872
"//lldb:SymbolHeaders" ,
You can’t perform that action at this time.
0 commit comments