forked from iotaledger-archive/entangled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
50 lines (37 loc) · 1.19 KB
/
Copy pathWORKSPACE
File metadata and controls
50 lines (37 loc) · 1.19 KB
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
workspace(name = "org_iota_entangled")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository", "new_git_repository")
git_repository(
name = "rules_iota",
commit = "e81ce3c6384cc1404858e53c2abebf9a18031a93",
remote = "https://github.com/iotaledger/rules_iota.git",
)
git_repository(
name = "iota_toolchains",
commit = "9a6c200013d971524f8427b6a404bab0a67a9328",
remote = "https://github.com/iotaledger/toolchains.git",
)
git_repository(
name = "bazel_toolchains",
commit = "b6875a7bb09b4fa1db8ea347852c0dc9ccae74ab",
remote = "https://github.com/th0br0/bazel-toolchains.git",
)
new_git_repository(
name = "iota_lib_cpp",
build_file = "//:third_party/iota_lib_cpp/BUILD.bzl",
commit = "9971c832e6a38972803a4d1506a78c36451c3df3",
remote = "https://github.com/th0br0/iota.lib.cpp.git",
)
android_sdk_repository(
name = "androidsdk",
api_level = 19,
)
android_ndk_repository(
name = "androidndk",
api_level = 14,
)
load("@rules_iota//:defs.bzl", "iota_deps")
iota_deps()
load("@iota_toolchains//:toolchains.bzl", "setup_toolchains")
setup_toolchains()
load("//tools:snapshot.bzl", "fetch_snapshot_files")
fetch_snapshot_files()