forked from tensorflow/minigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwtf.BUILD
More file actions
25 lines (25 loc) · 714 Bytes
/
Copy pathwtf.BUILD
File metadata and controls
25 lines (25 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
cc_library(
name = "wtf",
srcs = [
"bindings/cpp/buffer.cc",
"bindings/cpp/event.cc",
"bindings/cpp/platform.cc",
"bindings/cpp/runtime.cc",
] + glob(["bindings/cpp/include/wtf/platform/*.h"]),
hdrs = [
"bindings/cpp/include/wtf/argtypes.h",
"bindings/cpp/include/wtf/buffer.h",
"bindings/cpp/include/wtf/config.h",
"bindings/cpp/include/wtf/event.h",
"bindings/cpp/include/wtf/macros.h",
"bindings/cpp/include/wtf/platform.h",
"bindings/cpp/include/wtf/runtime.h",
],
copts = [
"-O3",
],
includes = [
"bindings/cpp/include/",
],
visibility = ["//visibility:public"],
)