-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBUILD.bazel
60 lines (59 loc) · 1.64 KB
/
BUILD.bazel
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
load("@rules_go//go:def.bzl", "go_library")
go_library(
name = "schema",
srcs = [
"actioncachestatistics.go",
"actiondata.go",
"actionsummary.go",
"artifactmetrics.go",
"bazelinvocation.go",
"bazelinvocationproblem.go",
"blob.go",
"build.go",
"buildgraphmetrics.go",
"cumulativemetrics.go",
"dynamicexecutionmetrics.go",
"evaluationstat.go",
"eventfile.go",
"executioninfo.go",
"filesmetric.go",
"garbagemetrics.go",
"memorymetrics.go",
"metrics.go",
"missdetail.go",
"namedsetoffiles.go",
"networkmetrics.go",
"outputgroup.go",
"packageloadmetrics.go",
"packagemetrics.go",
"racestatistics.go",
"resourceusage.go",
"runnercount.go",
"sourcecontrol.go",
"systemnetworkstats.go",
"targetcomplete.go",
"targetconfigured.go",
"targetmetrics.go",
"targetpair.go",
"testcollection.go",
"testfile.go",
"testresult.go",
"testsummary.go",
"timingbreakdown.go",
"timingchild.go",
"timingmetrics.go",
],
importpath = "github.com/buildbarn/bb-portal/ent/schema",
visibility = ["//visibility:public"],
deps = [
"//pkg/summary",
"@com_github_google_uuid//:uuid",
"@io_entgo_contrib//entgql",
"@io_entgo_ent//:ent",
"@io_entgo_ent//dialect/entsql",
"@io_entgo_ent//schema",
"@io_entgo_ent//schema/edge",
"@io_entgo_ent//schema/field",
"@io_entgo_ent//schema/index",
],
)