-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
75 lines (67 loc) · 1.38 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
cc_library(
name = "fenwick",
hdrs = ["fenwick.h"],
)
cc_library(
name = "fenwick_2d",
hdrs = ["fenwick_2d.h"],
)
cc_library(
name = "fenwick_rurq",
hdrs = ["fenwick_rurq.h"],
deps = [
":fenwick",
],
)
cc_library(
name = "fenwick_rmq",
hdrs = ["fenwick_rmq.h"],
)
cc_binary(
name = "fenwick_benchmark",
srcs = ["fenwick_benchmark.cc"],
deps = [
":fenwick",
"@third_party_absl//absl/strings",
"@third_party_absl//absl/time",
],
linkstatic = True,
)
cc_binary(
name = "fenwick_2d_benchmark",
srcs = ["fenwick_2d_benchmark.cc"],
deps = [
":fenwick_2d",
"@third_party_absl//absl/strings",
"@third_party_absl//absl/time",
],
linkstatic = True,
)
cc_binary(
name = "fenwick_rurq_benchmark",
srcs = ["fenwick_rurq_benchmark.cc"],
deps = [
":fenwick_rurq",
"@third_party_absl//absl/strings",
"@third_party_absl//absl/time",
],
linkstatic = True,
)
cc_binary(
name = "fenwick_rmq_test",
srcs = ["fenwick_rmq_test.cc"],
deps = [
":fenwick_rmq",
],
linkstatic = True,
)
cc_binary(
name = "fenwick_rmq_benchmark",
srcs = ["fenwick_rmq_benchmark.cc"],
deps = [
":fenwick_rmq",
"@third_party_absl//absl/strings",
"@third_party_absl//absl/time",
],
linkstatic = True,
)