forked from tensorflow/gnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
80 lines (72 loc) · 2.55 KB
/
BUILD
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
py_library(
name = "expect_absl_installed_app",
# This is a dummy rule used as a absl dependency in open-source.
# We expect absl to already be installed on the system, e.g. via
# `pip install absl`
visibility = ["//visibility:public"],
deps = [],
)
py_library(
name = "expect_absl_installed_flags",
# This is a dummy rule used as a absl dependency in open-source.
# We expect absl to already be installed on the system, e.g. via
# `pip install absl`
visibility = ["//visibility:public"],
deps = [],
)
py_library(
name = "expect_absl_installed_testing",
# This is a dummy rule used as a absl dependency in open-source.
# We expect absl to already be installed on the system, e.g. via
# `pip install absl`
visibility = ["//visibility:public"],
deps = [],
)
py_library(
name = "expect_numpy_installed",
# This is a dummy rule used as a numpy dependency in open-source.
# We expect numpy to already be installed on the system, e.g. via
# `pip install numpy`
visibility = ["//visibility:public"],
deps = [],
)
py_library(
name = "expect_tensorflow_installed",
# This is a dummy rule used as a tensorflow dependency in open-source.
# We expect tensorflow to already be installed on the system, e.g. via
# `pip install tensorflow`
visibility = ["//visibility:public"],
deps = [],
)
py_library(
name = "expect_tf_keras_installed",
# This is a dummy rule used as a tensorflow dependency in open-source.
# We expect tensorflow to already be installed on the system, e.g. via
# `pip install tensorflow`
visibility = ["//visibility:public"],
deps = [],
)
py_library(
name = "expect_typing_extensions_installed",
# This is a dummy rule used as a typing extensions dependency in
# open-source. We expect typing extensions to already be installed on
# the system.
visibility = ["//visibility:public"],
deps = [],
)
py_library(
name = "expect_vizier_service_pyvizier_installed",
# This is a dummy rule used as a dependency on vizier.service.pyvizier in open-source.
# We expect Vizier to already be installed on the system, e.g. via
# `pip install google-vizier` and extra steps if needed (b/254806045).
visibility = ["//visibility:public"],
deps = [],
)
py_library(
name = "expect_mock_installed",
# This is a dummy rule used as a mock dependency in open-source tests.
# We expect mock to already be installed on the system, e.g. via
# `pip install mock`
visibility = ["//visibility:public"],
deps = [],
)