Misc cleanup.

RELNOTES: None
PiperOrigin-RevId: 232713816
3 files changed
tree: bbba693d99cef5d479927b8ffd2dc0a55e8e5453
  1. .bazelci/
  2. doc/
  3. lib/
  4. rules/
  5. test/
  6. tools/
  7. .travis.yml
  8. AUTHORS
  9. BUILD
  10. CODEOWNERS
  11. CONTRIBUTING.md
  12. CONTRIBUTORS
  13. LICENSE
  14. README.md
  15. travis_install.sh
  16. travis_test.sh
  17. WORKSPACE
README.md

Apple Support for Bazel

Build Status

This repository contains helper methods that support building rules that target Apple platforms.

Quick setup

Add the following to your WORKSPACE file to add this repository as a dependency:

load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

git_repository(
    name = "build_bazel_apple_support",
    remote = "https://github.com/bazelbuild/apple_support.git",
    tag = "0.3.0",
)

load(
    "@build_bazel_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()