-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMODULE.bazel
More file actions
99 lines (84 loc) · 3.29 KB
/
MODULE.bazel
File metadata and controls
99 lines (84 loc) · 3.29 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
###############################################################################
# This project uses bazelmod to manage dependencies.
#
# For more details, please check https://bazel.build/external/module.
###############################################################################
module(
name = "iamf_tools",
version = "1.0.0",
)
# Bazel central registry dependencies.
bazel_dep(name = "rules_cc", version = "0.2.17")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "abseil-cpp", version = "20260107.1")
bazel_dep(name = "googletest", version = "1.17.0")
bazel_dep(name = "protobuf", version = "33.5")
bazel_dep(name = "fuzztest", version = "20250805.0")
bazel_dep(name = "google_benchmark", version = "1.9.5")
bazel_dep(
name = "eigen",
version = "3.4.0.bcr.3",
)
bazel_dep(name = "platforms", version = "1.0.0")
# Extra dependencies for python scripts.
bazel_dep(name = "rules_python", version = "1.8.4")
bazel_dep(name = "abseil-py", version = "2.1.0", dev_dependency = True)
# Android NDK dependencies for Andoid builds.
# Note that this does not fetch the Android NDK itself. If building Android builds, an environment
# variable ANDROID_NDK_HOME needs to be set to the directory containing the Android NDK.
bazel_dep(name = "rules_android_ndk", version = "0.1.3")
android_ndk_repository_extension = use_extension("@rules_android_ndk//:extension.bzl", "android_ndk_repository_extension")
use_repo(android_ndk_repository_extension, "androidndk")
# Some modules are not yet available in the bazel central registry. We use git_repository for all of
# them, and provide custom BUILD files for projects that are not bazel-native.
git_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "com_google_audio_to_tactile",
commit = "d3f449fdfd8cfe4a845d0ae244fce2a0bca34a15",
remote = "https://github.com/google/audio-to-tactile.git",
)
git_repository(
name = "com_google_loudness_ebur128",
commit = "e9e73147637db60dc742cba8a611a37dd72b14b5",
remote = "https://github.com/google/loudness_ebur128.git",
)
git_repository(
name = "com_google_obr",
commit = "478dc7c752d5eccae534635139ff0253eee3a14a",
remote = "https://github.com/google/obr.git",
)
# PFFFT, transitive dependency needed by OBR.
git_repository(
name = "pffft",
build_file = "//:external/pffft.BUILD",
commit = "d7a4c0206a29423478776d6b23a37bbb308f21d5",
remote = "https://bitbucket.org/jpommier/pffft.git",
)
# Expat.
git_repository(
name = "libexpat",
build_file = "//:external/libexpat.BUILD",
commit = "fa75b96546c069d17b8f80d91e0f4ef0cde3790d",
remote = "https://github.com/libexpat/libexpat.git",
)
# FDK AAC.
git_repository(
name = "fdk_aac",
build_file = "//:external/fdk_aac.BUILD",
commit = "ee76460efbdb147e26d804c798949c23f174460b",
remote = "https://android.googlesource.com/platform/external/aac",
)
# FLAC.
git_repository(
name = "flac",
build_file = "//:external/flac.BUILD",
commit = "8d648456a2d7444d54a579e365bab4c815ac6873",
remote = "https://github.com/xiph/flac.git",
)
# Opus.
git_repository(
name = "libopus",
build_file = "//:external/libopus.BUILD",
commit = "ddbe48383984d56acd9e1ab6a090c54ca6b735a6",
remote = "https://github.com/xiph/opus.git",
)