This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
WORKSPACE
81 lines (62 loc) · 2.09 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
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository", "new_git_repository")
load("//third_party:third_party.bzl", "third_party_deps")
git_repository(
name = "rules_iota",
commit = "2d15c55f12cff0db106f45866312f61314c583cd",
remote = "https://github.com/iotaledger/rules_iota.git",
)
git_repository(
name = "iota_toolchains",
commit = "700904f445d15ef948d112bf0bccf7dd3814ae5c",
remote = "https://github.com/iotaledger/toolchains.git",
)
git_repository(
name = "iota.c",
commit = "3f1c255bd6e7ccc19bd527a83fa4593d342cad32",
remote = "https://github.com/iotaledger/iota.c.git",
)
git_repository(
name = "org_iota_common",
commit = "cf649803757abf48432d4fa60e9f27ac119bae5f",
remote = "https://github.com/iotaledger/iota_common.git",
)
git_repository(
name = "mam.c",
commit = "fca24aa8f98e535c6af9feea3394bdeea555d0d3",
remote = "https://github.com/iotaledger/mam.c.git",
)
git_repository(
name = "io_bazel_rules_docker",
remote = "https://github.com/bazelbuild/rules_docker.git",
tag = "v0.9.0",
)
new_git_repository(
name = "mbedtls_2_16_6",
build_file = "//third_party:mbedtls.BUILD",
remote = "https://github.com/ARMmbed/mbedtls.git",
tag = "mbedtls-2.16.6",
)
new_git_repository(
name = "flatcc_0_6_0",
build_file = "//third_party:flatcc.BUILD",
remote = "https://github.com/dvidelabs/flatcc.git",
tag = "v0.6.0",
)
load("@rules_iota//:defs.bzl", "iota_deps")
load("@io_bazel_rules_docker//repositories:repositories.bzl", container_repositories = "repositories")
container_repositories()
load("@io_bazel_rules_docker//cc:image.bzl", _cc_image_repos = "repositories")
load("@io_bazel_rules_docker//container:pull.bzl", "container_pull")
container_pull(
name = "ubuntu1804",
registry = "l.gcr.io",
repository = "google/ubuntu1804",
tag = "latest",
)
iota_deps()
third_party_deps()
_cc_image_repos()
load("@iota_toolchains//:toolchains.bzl", "setup_initial_deps")
setup_initial_deps()
load("@iota_toolchains//:defs.bzl", "setup_toolchains_repositories")
setup_toolchains_repositories()