forked from AOMediaCodec/iamf-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
68 lines (59 loc) · 1.8 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
########################
# Platform Independent #
########################
load("@bazel_tools//tools/build_defs/repo:git.bzl",
"git_repository",
"new_git_repository", # @unused
)
load("@bazel_tools//tools/build_defs/repo:http.bzl",
"http_archive", # @unused
)
# GoogleTest/GoogleMock framework.
git_repository(
name = "com_google_googletest",
remote = "https://github.com/google/googletest.git",
tag = "v1.14.0",
)
# proto_library, cc_proto_library, and java_proto_library rules implicitly
# depend on @com_google_protobuf for protoc and proto runtimes.
# This statement defines the @com_google_protobuf repo.
git_repository(
name = "com_google_protobuf",
remote = "https://github.com/protocolbuffers/protobuf.git",
tag = "v25.0",
)
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
protobuf_deps()
# Google Abseil Libs
git_repository(
name = "com_google_absl",
remote = "https://github.com/abseil/abseil-cpp.git",
commit = "fb3621f4f897824c0dbe0615fa94543df6192f30",
)
# Google Audio-to-Tactile Lib
git_repository(
name = "com_google_audio_to_tactile",
remote = "https://github.com/google/audio-to-tactile.git",
commit = "f1669677fa16654be66e2f99ac9c4d5f16f4b719",
)
# FDK AAC.
git_repository(
name = "fdk_aac",
remote = "https://android.googlesource.com/platform/external/aac",
commit = "38c27d428ee223bf32f0a2a07cae9fcb99cf3cae",
build_file = "fdk_aac.BUILD",
)
# FLAC.
git_repository(
name = "flac",
remote = "https://github.com/xiph/flac.git",
commit = "28e4f0528c76b296c561e922ba67d43751990599",
build_file = "flac.BUILD",
)
# Opus.
git_repository(
name = "libopus",
remote = "https://gitlab.xiph.org/xiph/opus.git",
commit = "82ac57d9f1aaf575800cf17373348e45b7ce6c0d",
build_file = "libopus.BUILD",
)