Created
August 2, 2020 21:58
-
-
Save liuliu/5127262a28f77946908591fd176b90a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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