-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMODULE.bazel
114 lines (98 loc) · 4.04 KB
/
MODULE.bazel
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
module(
name = "ift_encoder",
repo_name = "ift_encoder",
)
# Bazel Modules
bazel_dep(name = "googletest", version = "1.15.2")
bazel_dep(name = "abseil-cpp", version = "20240722.0.bcr.2")
bazel_dep(name = "protobuf", version = "29.3")
bazel_dep(name = "rules_proto", version = "7.1.0")
bazel_dep(name = "platforms", version = "0.0.11")
bazel_dep(name = "rules_rust", version = "0.56.0")
# Non Bazel Modules
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Brotli Encoder/Decoder
http_archive(
name = "brotli",
build_file = "//third_party:brotli.BUILD",
sha256 = "3b90c83489879701c05f39b68402ab9e5c880ec26142b5447e73afdda62ce525",
strip_prefix = "brotli-71fe6cac061ac62c0241f410fbd43a04a6b4f303",
url = "https://github.com/google/brotli/archive/71fe6cac061ac62c0241f410fbd43a04a6b4f303.zip",
)
# WOFF2 Encoder/Decoder
http_archive(
name = "woff2",
build_file = "//third_party:woff2.BUILD",
sha256 = "730b7f9de381c7b5b09c81841604fa10c5dd67628822fa377b776ab7929fe18c",
strip_prefix = "woff2-c8c0d339131e8f1889ae8aac0075913d98d9a722",
url = "https://github.com/google/woff2/archive/c8c0d339131e8f1889ae8aac0075913d98d9a722.zip",
)
# Harfbuzz
http_archive(
name = "harfbuzz",
build_file = "//third_party:harfbuzz.BUILD",
integrity = "sha256-yNAzHL3p++Giyd3IKGYH/8Gn5YGbh2j2h/uyeWD/GtE=",
strip_prefix = "harfbuzz-a1e587b75acfa91b8756c21e5305af53fb2114af",
urls = ["https://github.com/harfbuzz/harfbuzz/archive/a1e587b75acfa91b8756c21e5305af53fb2114af.zip"],
)
# URI Templates
http_archive(
name = "uritemplate-cpp",
build_file = "//third_party:uritemplate-cpp.BUILD",
strip_prefix = "uritemplate-cpp-1.0.1",
integrity = "sha256-XwiP9k9mGukrqab4M1IfVKPEE55FmPOeLiTN3kxZfaw=",
urls = ["https://github.com/returnzero23/uritemplate-cpp/archive/v1.0.1.zip"],
)
# Base 32 Hex
http_archive(
name = "cppcodec",
build_file = "//third_party:cppcodec.BUILD",
integrity = "sha256-abpzBt/WJEKA0os255vhquwnQd2njfw6RryLFWsMRU0=",
strip_prefix = "cppcodec-8019b8b580f8573c33c50372baec7039dfe5a8ce",
url = "https://github.com/tplgy/cppcodec/archive/8019b8b580f8573c33c50372baec7039dfe5a8ce.zip",
)
# IFT Specification - for Feature Registry
http_archive(
name = "ift_spec",
build_file = "//third_party:ift_spec.BUILD",
sha256 = "3c8e7f78c49272b89b878a61729b1863b9f37c722f6623ee2eb146adccb41333",
strip_prefix = "IFT-01037d264f657f9164f9522b8b16a7bab2e6917c",
urls = ["https://github.com/w3c/IFT/archive/01037d264f657f9164f9522b8b16a7bab2e6917c.zip"],
)
# Fontations
http_archive(
name = "fontations",
urls = ["https://github.com/googlefonts/fontations/archive/94b307c0cafd7c01303512561adea12caf0b8448.zip"],
strip_prefix = "fontations-94b307c0cafd7c01303512561adea12caf0b8448",
build_file = "//third_party:fontations.BUILD",
integrity = "sha256-wahAEZhicU9APfEV/eNmdzTxMDO1JV1KGZzCMw9wers=",
)
# Rust Deps Config
crate = use_extension("@rules_rust//crate_universe:extensions.bzl", "crate")
crate.from_cargo(
name = "fontations_deps",
cargo_lockfile = "//fontations:Cargo.lock",
manifests = [
"@fontations//:Cargo.toml",
"@fontations//:fauntlet/Cargo.toml",
"@fontations//:font-codegen/Cargo.toml",
"@fontations//:font-test-data/Cargo.toml",
"@fontations//:font-types/Cargo.toml",
"@fontations//:fuzz/Cargo.toml",
"@fontations//:incremental-font-transfer/Cargo.toml",
"@fontations//:klippa/Cargo.toml",
"@fontations//:otexplorer/Cargo.toml",
"@fontations//:read-fonts/Cargo.toml",
"@fontations//:shared-brotli-patch-decoder/Cargo.toml",
"@fontations//:skrifa/Cargo.toml",
"@fontations//:write-fonts/Cargo.toml",
],
)
use_repo(crate, "fontations_deps")
# Hedron - for generating compiles_commands.json
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
git_override(
module_name = "hedron_compile_commands",
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
commit = "f5fbd4cee671d8d908f37c83abaf70fba5928fc7",
)