8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 193a95d commit b7fdaebCopy full SHA for b7fdaeb
BUILD.bazel
@@ -212,13 +212,6 @@ header_template_rule(
212
},
213
)
214
215
-cc_library(
216
- name = "aten_core_headers",
217
- hdrs = aten_core_hdrs(rules = rules),
218
- strip_include_prefix = "aten/src/",
219
- deps = ["//c10:headers"],
220
-)
221
-
222
cc_library(
223
name = "aten_headers",
224
hdrs = glob([
build.bzl
@@ -6,6 +6,14 @@ load(
6
7
8
def define_targets(rules):
9
+ rules.cc_library(
10
+ name = "aten_core_headers",
11
+ hdrs = aten_core_hdrs(rules = rules),
12
+ strip_include_prefix = "aten/src/",
13
+ deps = ["//c10"],
14
+ visibility = ["//visibility:private"],
15
+ )
16
+
17
rules.cc_library(
18
name = "caffe2_serialize",
19
srcs = [
0 commit comments