Skip to content

Commit 5f27f63

Browse files
committed
removing the C++ library target not required by cpp and core tests
1 parent 7024bf2 commit 5f27f63

File tree

1 file changed

+1
-31
lines changed

1 file changed

+1
-31
lines changed

third_party/BUILD

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
load("@rules_cc//cc:cc_library.bzl", "cc_library")
2+
load("@rules_cc//cc:defs.bzl", "cc_library")
23

34
package(default_visibility = ["//visibility:public"])
45

5-
load("@rules_cc//cc:defs.bzl", "cc_library")
6-
76
config_setting(
87
name = "aarch64_linux",
98
constraint_values = [
@@ -36,35 +35,6 @@ cc_library(
3635
strip_include_prefix = "include",
3736
)
3837

39-
cc_library(
40-
name = "libtorchtrt_runtime",
41-
srcs = select({
42-
":windows": [
43-
"lib/x64/torchtrt_runtime.dll",
44-
],
45-
"//conditions:default": [
46-
"lib/libtorchtrt_runtime.so",
47-
],
48-
}),
49-
)
50-
51-
cc_library(
52-
name = "libtorchtrt_plugins",
53-
srcs = select({
54-
":windows": [
55-
"lib/x64/torchtrt_plugins.dll",
56-
],
57-
"//conditions:default": [
58-
"lib/libtorchtrt_plugins.so",
59-
],
60-
}),
61-
hdrs = glob([
62-
"include/torch_tensorrt/core/plugins/**/*.h",
63-
]),
64-
includes = ["include/"],
65-
strip_include_prefix = "include",
66-
)
67-
6838
cc_library(
6939
name = "torch_tensorrt_core_hdrs",
7040
hdrs = glob([

0 commit comments

Comments
 (0)