1#################################################################################################### 2# This project is now manages dependencies with both bazelmod and WORKSPACE, with the goal of moving 3# all dependencies to bazelmod. 4# 5# For more details, please check https://github.com/bazelbuild/bazel/issues/18958. 6#################################################################################################### 7 8load( 9 "@bazel_tools//tools/build_defs/repo:git.bzl", 10 "git_repository", 11) 12 13# Google Audio-to-Tactile Library. 14git_repository( 15 name = "com_google_audio_to_tactile", 16 commit = "d3f449fdfd8cfe4a845d0ae244fce2a0bca34a15", 17 remote = "https://github.com/google/audio-to-tactile.git", 18) 19 20# Expat. 21git_repository( 22 name = "libexpat", 23 build_file = "libexpat.BUILD", 24 commit = "fa75b96546c069d17b8f80d91e0f4ef0cde3790d", 25 remote = "https://github.com/libexpat/libexpat.git", 26) 27 28# FDK AAC. 29git_repository( 30 name = "fdk_aac", 31 build_file = "fdk_aac.BUILD", 32 commit = "38c27d428ee223bf32f0a2a07cae9fcb99cf3cae", 33 remote = "https://android.googlesource.com/platform/external/aac", 34) 35 36# FLAC. 37git_repository( 38 name = "flac", 39 build_file = "flac.BUILD", 40 commit = "28e4f0528c76b296c561e922ba67d43751990599", 41 remote = "https://github.com/xiph/flac.git", 42) 43 44# Opus. 45git_repository( 46 name = "libopus", 47 build_file = "libopus.BUILD", 48 commit = "82ac57d9f1aaf575800cf17373348e45b7ce6c0d", 49 remote = "https://gitlab.xiph.org/xiph/opus.git", 50) 51