forked from tensorflow/minigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
97 lines (89 loc) · 1.95 KB
/
Copy pathBUILD
File metadata and controls
97 lines (89 loc) · 1.95 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package(
default_visibility = ["//visibility:public"],
)
licenses(["notice"]) # Apache License 2.0
cc_library(
name = "directory_watcher",
srcs = ["directory_watcher.cc"],
hdrs = ["directory_watcher.h"],
deps = [
":file",
"//cc:logging",
"//cc/async:poll_thread",
"//cc/async:thread",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",
],
)
cc_library(
name = "path",
srcs = ["path.cc"],
hdrs = ["path.h"],
deps = [
"//cc/platform",
"@com_google_absl//absl/strings",
],
)
cc_library(
name = "utils_tf",
srcs = ["utils_tf.cc"],
hdrs = ["utils.h"],
tags = ["manual"],
deps = [
":path",
"//cc:logging",
"//cc/platform",
"//cc/tensorflow",
"@com_google_absl//absl/strings",
],
)
cc_library(
name = "utils_no_tf",
srcs = select({
"@bazel_tools//src/conditions:windows": ["utils_windows.cc"],
"//conditions:default": ["utils_posix.cc"],
}),
hdrs = ["utils.h"],
deps = [
":path",
"//cc:logging",
"//cc/platform",
"@com_google_absl//absl/strings",
],
)
cc_library(
name = "file",
hdrs = [
"path.h",
"utils.h",
],
deps = [
":path",
"//cc/platform",
"@com_google_absl//absl/strings",
] + select({
"//cc/config:enable_tf": [":utils_tf"],
"//conditions:default": [":utils_no_tf"],
}),
)
cc_test(
name = "path_test",
srcs = ["path_test.cc"],
deps = [
":file",
"@com_google_googletest//:gtest_main",
],
)
cc_test(
name = "utils_test",
srcs = ["utils_test.cc"],
deps = [
":file",
"//cc:base",
"//cc:logging",
"@com_google_absl//absl/time",
"@com_google_googletest//:gtest_main",
],
)