[Bazel] Update for f8c6515554

Update Bazel for
https://github.com/llvm/llvm-project/commit/f8c6515554 by splitting out
an LLVMDWP library target.
This commit is contained in:
Geoffrey Martin-Noble 2021-07-22 14:51:04 -07:00
parent 3e2ad26b08
commit 25c02b32a4
1 changed files with 18 additions and 3 deletions

View File

@ -913,6 +913,23 @@ cc_library(
],
)
cc_library(
name = "LLVMDWP",
srcs = glob([
"lib/DWP/*.cpp",
"lib/DWP/*.h",
]),
hdrs = glob(["include/llvm/DWP/*.h"]),
copts = llvm_copts,
deps = [
":DebugInfoDWARF",
":MC",
":Object",
":Support",
":Target",
],
)
cc_library(
name = "TransformUtils",
srcs = glob([
@ -2726,11 +2743,9 @@ cc_binary(
stamp = 0,
deps = [
":AllTargetsCodeGens",
":DebugInfoDWARF",
":LLVMDWP",
":MC",
":Object",
":Support",
":Target",
],
)