2021-02-26 20:21:13 +00:00
|
|
|
workspace(name = "rules_foreign_cc_examples")
|
2019-01-07 09:31:27 +00:00
|
|
|
|
|
|
|
local_repository(
|
|
|
|
name = "rules_foreign_cc",
|
|
|
|
path = "..",
|
|
|
|
)
|
|
|
|
|
2021-03-12 17:08:13 +00:00
|
|
|
load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")
|
2019-01-07 09:31:27 +00:00
|
|
|
|
2021-02-26 20:21:13 +00:00
|
|
|
# Don't use preinstalled tools to ensure builds are as hermetic as possible
|
2021-02-16 15:41:58 +00:00
|
|
|
rules_foreign_cc_dependencies(register_preinstalled_tools = False)
|
2019-01-07 09:31:27 +00:00
|
|
|
|
2019-04-30 13:50:26 +00:00
|
|
|
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
|
|
|
|
|
|
|
|
bazel_skylib_workspace()
|
|
|
|
|
2021-01-25 16:04:52 +00:00
|
|
|
load("//deps:repositories.bzl", "repositories")
|
2019-01-07 09:31:27 +00:00
|
|
|
|
2021-01-25 16:04:52 +00:00
|
|
|
repositories()
|
2019-07-10 16:44:57 +00:00
|
|
|
|
2021-01-25 16:04:52 +00:00
|
|
|
load("//deps:deps_android.bzl", "deps_android")
|
2019-01-07 09:31:27 +00:00
|
|
|
|
2021-01-25 16:04:52 +00:00
|
|
|
deps_android()
|
2019-01-07 09:31:27 +00:00
|
|
|
|
2021-01-25 16:04:52 +00:00
|
|
|
load("//deps:deps_jvm_external.bzl", "deps_jvm_external")
|
2019-01-07 09:31:27 +00:00
|
|
|
|
2021-01-25 16:04:52 +00:00
|
|
|
deps_jvm_external()
|
2021-02-26 20:21:13 +00:00
|
|
|
|
|
|
|
local_repository(
|
|
|
|
name = "rules_foreign_cc_examples_third_party",
|
|
|
|
path = "third_party",
|
|
|
|
)
|
|
|
|
|
|
|
|
load("@rules_foreign_cc_examples_third_party//:repositories.bzl", examples_third_party_repositories = "repositories")
|
|
|
|
|
|
|
|
examples_third_party_repositories()
|
2021-03-09 21:28:28 +00:00
|
|
|
|
2021-10-19 14:51:53 +00:00
|
|
|
load("@rules_foreign_cc_examples_third_party//:setup.bzl", examples_third_party_setup = "setup")
|
|
|
|
|
|
|
|
examples_third_party_setup()
|
|
|
|
|
2021-05-21 18:40:34 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "bazel_toolchains",
|
|
|
|
sha256 = "179ec02f809e86abf56356d8898c8bd74069f1bd7c56044050c2cd3d79d0e024",
|
|
|
|
strip_prefix = "bazel-toolchains-4.1.0",
|
|
|
|
urls = [
|
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
|
|
|
"https://github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2021-03-09 21:28:28 +00:00
|
|
|
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
|
|
|
|
|
2021-05-21 18:40:34 +00:00
|
|
|
# Creates a default toolchain config for RBE.
|
|
|
|
# Use this as is if you are using the rbe_ubuntu16_04 container,
|
|
|
|
# otherwise refer to RBE docs.
|
2021-03-09 21:28:28 +00:00
|
|
|
rbe_autoconfig(name = "buildkite_config")
|
2021-08-21 07:55:10 +00:00
|
|
|
|
2022-04-20 22:30:31 +00:00
|
|
|
# TODO: Use a rules_apple release once there is one that contains the commit below.
|
2021-08-21 07:55:10 +00:00
|
|
|
http_archive(
|
|
|
|
name = "build_bazel_rules_apple",
|
2022-04-20 22:30:31 +00:00
|
|
|
sha256 = "7cef4355e3cd2857b246ea52ba6b3092831a91c98945cb355e0f02f6a2f29274",
|
|
|
|
strip_prefix = "rules_apple-df98f37ea725005ec8682c9cd582bac74445b689",
|
|
|
|
url = "https://github.com/bazelbuild/rules_apple/archive/df98f37ea725005ec8682c9cd582bac74445b689.tar.gz",
|
2021-08-21 07:55:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
load(
|
|
|
|
"@build_bazel_rules_apple//apple:repositories.bzl",
|
|
|
|
"apple_rules_dependencies",
|
|
|
|
)
|
|
|
|
|
|
|
|
apple_rules_dependencies()
|
|
|
|
|
|
|
|
load(
|
|
|
|
"@build_bazel_rules_swift//swift:repositories.bzl",
|
|
|
|
"swift_rules_dependencies",
|
|
|
|
)
|
|
|
|
|
|
|
|
swift_rules_dependencies()
|
|
|
|
|
|
|
|
load(
|
|
|
|
"@build_bazel_rules_swift//swift:extras.bzl",
|
|
|
|
"swift_rules_extra_dependencies",
|
|
|
|
)
|
|
|
|
|
|
|
|
swift_rules_extra_dependencies()
|
|
|
|
|
|
|
|
load(
|
|
|
|
"@build_bazel_apple_support//lib:repositories.bzl",
|
|
|
|
"apple_support_dependencies",
|
|
|
|
)
|
|
|
|
|
|
|
|
apple_support_dependencies()
|