You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 5, 2022. It is now read-only.
This repo contains the Bazel dependencies used by the Material iOS team for
all repositories they own that support Bazel for Apple builds. The purpose of this library is to
enable WORKSPACE files in Material iOS libraries to be consistent with one another. This repo is,
in effect, the single source of truth of common WORKSPACE dependencies for the Material iOS team.
The provided apple_workspace_dependencies method will add all common dependencies used for Apple
development, including (but not necessarily limited to):
All dependencies of these libraries are included as well so that only
apple_workspace_dependencies() needs to be loaded and invoked in each repo's WORKSPACE.
Usage
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "bazel_workspace_apple",
remote = "https://github.com/material-foundation/bazel-workspace-apple.git",
commit = "<# a SHA from this repo #>",
)
load("@bazel_workspace_apple//apple:repositories.bzl", "apple_workspace_dependencies")
apple_workspace_dependencies()
License
Licensed under the Apache 2.0 license. See LICENSE for details.
About
The Material Foundation's common Bazel workspaces dependencies for Apple targets