Rename filecheck-lib target to match style of other targets

PiperOrigin-RevId: 334883297
Change-Id: Ibbbfbb08c6f7d0a51153cbad44a63e67fee3b5af
This commit is contained in:
Geoffrey Martin-Noble 2020-10-01 13:18:42 -07:00 committed by TensorFlower Gardener
parent 4fd2757500
commit 54ea932504
2 changed files with 4 additions and 4 deletions

View File

@ -20,8 +20,8 @@ tf_python_pybind_extension(
"//tensorflow/compiler/mlir/tensorflow:tensorflow_types",
"//tensorflow/python:pybind11_lib",
"//tensorflow/python:pybind11_status",
"@llvm-project//llvm:FileCheckLib",
"@llvm-project//llvm:Support",
"@llvm-project//llvm:filecheck-lib",
"@llvm-project//mlir:IR",
"@llvm-project//mlir:Parser",
"@llvm-project//mlir:StandardOps",
@ -37,8 +37,8 @@ tf_python_pybind_extension(
deps = [
"//tensorflow/python:pybind11_lib",
"//tensorflow/python:pybind11_status",
"@llvm-project//llvm:FileCheckLib",
"@llvm-project//llvm:Support",
"@llvm-project//llvm:filecheck-lib",
"@pybind11",
],
)

View File

@ -420,7 +420,7 @@ cc_binary(
)
cc_library(
name = "filecheck-lib",
name = "FileCheckLib",
srcs = glob([
"lib/FileCheck/*.cpp",
"lib/FileCheck/*.h",
@ -443,8 +443,8 @@ cc_binary(
linkopts = llvm_linkopts,
stamp = 0,
deps = [
":FileCheckLib",
":Support",
":filecheck-lib",
],
)