-
Notifications
You must be signed in to change notification settings - Fork 0
/
module.bazel
28 lines (24 loc) · 898 Bytes
/
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
module(
name = "react_native_basis_universal",
compatibility_level = 1,
)
# Basic
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "platforms", version = "0.0.10")
# Rules
bazel_dep(name = "rules_cc", version = "0.0.10")
bazel_dep(name = "rules_foreign_cc", version = "0.12.0")
bazel_dep(name = "rules_apple", version = "3.9.2")
bazel_dep(name = "aspect_bazel_lib", version = "2.9.1")
# Third party
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "basis_universal",
type = "tar.gz",
integrity = "sha256-DvNEzH4zc8qcFd4r2AUS6k6hfgntiV/r355w9seJvCc=",
build_file = "//third_party/basis_universal:BUILD.basis_universal.bazel",
strip_prefix = "basis_universal-1_50_0_2",
urls = [
"https://github.com/BinomialLLC/basis_universal/archive/refs/tags/v1_50_0_2.tar.gz"
]
)