forked from tensorflow/minigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
72 lines (65 loc) · 1.38 KB
/
Copy pathBUILD
File metadata and controls
72 lines (65 loc) · 1.38 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
package(
default_visibility = ["//visibility:public"],
)
licenses(["notice"]) # Apache License 2.0
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:tensorflow",
"//cc/platform",
"@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",
deps = [":path"] + 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",
"@com_google_absl//absl/time",
"@com_google_googletest//:gtest_main",
],
)