-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
WORKSPACE
46 lines (34 loc) · 1.08 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
workspace(name = "SwiftDP")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "build_bazel_rules_swift",
commit = "1f2201706d6b4dcf3675c4c5393fe42a30948859",
remote = "https://github.com/bazelbuild/rules_swift.git",
)
load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)
swift_rules_dependencies()
git_repository(
name = "build_bazel_rules_apple",
commit = "313eeb838497e230f01a7367ae4555aaf0cac62e",
remote = "https://github.com/bazelbuild/rules_apple.git",
)
load(
"@build_bazel_rules_apple//apple:repositories.bzl",
"apple_rules_dependencies",
)
apple_rules_dependencies()
load(
"@com_google_protobuf//:protobuf_deps.bzl",
"protobuf_deps",
)
protobuf_deps()
git_repository(
name = "google_differential_privacy",
commit = "14f26fb91570cce384c2715d3adcaa4e92eec605",
remote = "https://github.com/google/differential-privacy",
)
load("@google_differential_privacy//:differential_privacy_deps.bzl", "differential_privacy_deps")
differential_privacy_deps()