forked from livegrep/livegrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
142 lines (113 loc) · 3.79 KB
/
WORKSPACE
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
workspace(name = "com_github_livegrep_livegrep")
load(
"@bazel_tools//tools/build_defs/repo:git.bzl",
"git_repository",
"new_git_repository",
)
load(
"@bazel_tools//tools/build_defs/repo:http.bzl",
"http_archive",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "divsufsort",
build_file = "//third_party:BUILD.divsufsort",
sha256 = "9164cb6044dcb6e430555721e3318d5a8f38871c2da9fd9256665746a69351e0",
strip_prefix = "libdivsufsort-2.0.1",
type = "tgz",
url = "https://codeload.github.com/y-256/libdivsufsort/tar.gz/2.0.1",
)
git_repository(
name = "com_googlesource_code_re2",
commit = "767de83bb7e4bfe3a2d8aec0ec79f9f1f66da30a",
remote = "https://github.com/google/re2",
shallow_since = "1535650560 +0000",
)
git_repository(
name = "gflags",
commit = "e171aa2d15ed9eb17054558e0b3a6a413bb01067", # v2.2.2
remote = "https://github.com/gflags/gflags",
shallow_since = "1541971260 +0000",
)
git_repository(
name = "com_github_nelhage_rules_boost",
commit = "c1d618315fa152958baef8ea0d77043eebf7f573",
remote = "https://github.com/nelhage/rules_boost",
shallow_since = "1546641660 -0600",
)
# local_repository(
# name = "com_github_nelhage_boost",
# path = "../rules_boost",
# )
load(
"@com_github_nelhage_rules_boost//:boost/boost.bzl",
"boost_deps",
)
boost_deps()
git_repository(
name = "com_google_absl",
commit = "5e0dcf72c64fae912184d2e0de87195fe8f0a425",
remote = "https://github.com/abseil/abseil-cpp",
)
http_archive(
name = "io_bazel_rules_go",
sha256 = "842ec0e6b4fbfdd3de6150b61af92901eeb73681fd4d185746644c338f51d4c0",
urls = [
"https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/v0.20.1/rules_go-v0.20.1.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.20.1/rules_go-v0.20.1.tar.gz",
],
)
git_repository(
name = "bazel_gazelle",
commit = "e443c54b396a236e0d3823f46c6a931e1c9939f2", # 0.17.0
remote = "https://github.com/bazelbuild/bazel-gazelle.git",
shallow_since = "1551292640 -0800",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains()
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
gazelle_dependencies()
load(
"//tools/build_defs:go_externals.bzl",
"go_externals",
)
go_externals()
http_archive(
name = "com_github_libgit2",
build_file = "//third_party:BUILD.libgit2",
sha256 = "adf17310b590e6e7618f070c742b5ee028aeeed2c60099bc4190c386b5060de1",
strip_prefix = "libgit2-0.27.9/",
url = "https://github.com/libgit2/libgit2/archive/v0.27.9.tar.gz",
)
git_repository(
name = "com_github_grpc_grpc",
commit = "a6c7b66f756ba8d4d87ee2b28e004e0ad3a642c9",
remote = "https://github.com/grpc/grpc.git",
# shallow_since = "1572095092 -0700",
)
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
grpc_deps()
load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps")
grpc_extra_deps()
git_repository(
name = "io_bazel_buildifier",
commit = "ae772d29d07002dfd89ed1d9ff673a1721f1b8dd",
remote = "https://github.com/bazelbuild/buildifier.git",
)
local_repository(
name = "org_dropbox_rules_node",
path = "tools/org_dropbox_rules_node",
)
load("@org_dropbox_rules_node//node:defs.bzl", "node_repositories")
node_repositories()
git_repository(
name = "com_grail_bazel_compdb",
commit = "7658de071fcd072163c24cc96d78e9891d4d81f5",
remote = "https://github.com/grailbio/bazel-compilation-database.git",
)
git_repository(
name = "com_google_googletest",
commit = "0ea2d8f8fa1601abb9ce713b7414e7b86f90bc61",
remote = "https://github.com/google/googletest",
)