-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
65 lines (55 loc) · 1.74 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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load(
"@bazel_tools//tools/build_defs/repo:git.bzl",
"git_repository",
"new_git_repository",
)
load(
":configure.bzl",
"configure_local_variables",
)
configure_local_variables(
name = "local_config",
defs_template = "//:defs.bzl.tpl",
)
git_repository(
name = "bazel_clang_tidy",
commit = "9871a95dbb150dc595aa91355fe99c500196cf3c",
remote = "https://github.com/erenon/bazel_clang_tidy",
)
new_git_repository(
name = "fmt",
build_file = "@//:external/fmt.BUILD",
commit = "9c14474d30e8723725823073b46b9c655e171886",
remote = "https://github.com/fmtlib/fmt/",
)
new_git_repository(
name = "metal",
build_file = "@//:external/metal.BUILD",
commit = "8d687739ec9fbc7768f8cbf5e192d9ffdb41dc3a",
remote = "https://github.com/brunocodutra/metal/",
)
new_git_repository(
name = "ut",
build_file = "@//:external/ut.BUILD",
commit = "c3ed7a21a18a4de3fc807451ae86c9f51e706a11",
remote = "https://github.com/boost-ext/ut/",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_python",
sha256 = "954aa89b491be4a083304a2cb838019c8b8c3720a7abb9c4cb81ac7a24230cea",
url = "https://github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz",
)
load("@rules_python//python:pip.bzl", "pip_install")
pip_install(
name = "pip",
#python_interpreter_target = "@python_interpreter//:python_bin",
requirements = "//doxygen:requirements.txt",
)
new_git_repository(
name = "mcss",
build_file = "@//:external/m.css.BUILD",
commit = "b6559265ce825c7cedc8a7e27770c8f11a938ba9",
remote = "https://github.com/oliverlee/m.css/",
)