-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathMODULE.bazel
More file actions
29 lines (25 loc) · 975 Bytes
/
MODULE.bazel
File metadata and controls
29 lines (25 loc) · 975 Bytes
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
# Copyright (c) the JPEG XL Project Authors. All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
"""JPEG XL reference implementation"""
module(
name = "jpegli",
repo_name = "jpegli",
)
bazel_dep(name = "bazel_skylib", version = "1.9.0")
bazel_dep(name = "brotli", version = "1.1.0")
bazel_dep(name = "giflib", version = "5.2.1.bcr.1")
bazel_dep(name = "googletest", version = "1.17.0.bcr.2")
bazel_dep(name = "libjpeg_turbo", version = "2.1.91.bcr.1")
bazel_dep(name = "libpng", version = "1.6.50.bcr.1")
bazel_dep(name = "libwebp", version = "1.6.0")
bazel_dep(name = "openexr", version = "3.4.7")
bazel_dep(name = "rules_cc", version = "0.2.17")
bazel_dep(name = "skcms", version = "20250916.0.bcr.1")
# Requires patching `MODULE.bazel` and `BUILD` files
bazel_dep(name = "highway", version = "1.3.1")
local_path_override(
module_name = "highway",
path = "third_party/highway",
)