Skip to content

Instantly share code, notes, and snippets.

@liuliu
Created August 2, 2020 21:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save liuliu/5127262a28f77946908591fd176b90a8 to your computer and use it in GitHub Desktop.
Save liuliu/5127262a28f77946908591fd176b90a8 to your computer and use it in GitHub Desktop.
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
git_repository(
name = "build_bazel_rules_apple",
remote = "https://github.com/bazelbuild/rules_apple.git",
commit = "524ea38c7c1f8a14bdea812f499aea7c5d3d1e13",
shallow_since = "1585159204 -0700"
)
git_repository(
name = "build_bazel_rules_swift",
remote = "https://github.com/bazelbuild/rules_swift.git",
commit = "8ecb09641ee0ba5efd971ffff8dd6cbee6ea7dd3",
shallow_since = "1584545517 -0700"
)
git_repository(
name = "build_bazel_apple_support",
remote = "https://github.com/bazelbuild/apple_support.git",
commit = "501b4afb27745c4813a88ffa28acd901408014e4",
shallow_since = "1577729628 -0800"
)
git_repository(
name = "bazel_skylib",
remote = "https://github.com/bazelbuild/bazel-skylib.git",
commit = "d35e8d7bc6ad7a3a53e9a1d2ec8d3a904cc54ff7",
shallow_since = "1593183852 +0200"
)
load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)
swift_rules_dependencies()
load(
"@build_bazel_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)
apple_support_dependencies()
load(
"@com_google_protobuf//:protobuf_deps.bzl",
"protobuf_deps",
)
protobuf_deps()
http_file(
name = "xctestrunner",
executable = 1,
sha256 = "890faff3f6d5321712ffb7a09ba3614eabca93977221e86d058c7842fdbad6b6",
urls = ["https://github.com/google/xctestrunner/releases/download/0.2.13/ios_test_runner.par"],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment