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
|
|
|
|
2022-11-09 11:54:39 +00:00
|
|
|
rules_foreign_cc_dependencies(register_built_pkgconfig_toolchain = True)
|
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()
|
|
|
|
|
2023-05-06 07:56:00 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
|
|
|
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "rules_cc",
|
|
|
|
sha256 = "4dccbfd22c0def164c8f47458bd50e0c7148f3d92002cdb459c2a96a68498241",
|
|
|
|
urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.0.1/rules_cc-0.0.1.tar.gz"],
|
|
|
|
)
|
|
|
|
|
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
|
|
|
http_archive(
|
2022-08-18 17:18:24 +00:00
|
|
|
name = "bazelci_rules",
|
|
|
|
sha256 = "eca21884e6f66a88c358e580fd67a6b148d30ab57b1680f62a96c00f9bc6a07e",
|
|
|
|
strip_prefix = "bazelci_rules-1.0.0",
|
|
|
|
url = "https://github.com/bazelbuild/continuous-integration/releases/download/rules-1.0.0/bazelci_rules-1.0.0.tar.gz",
|
2021-05-21 18:40:34 +00:00
|
|
|
)
|
|
|
|
|
2022-08-18 17:18:24 +00:00
|
|
|
load("@bazelci_rules//:rbe_repo.bzl", "rbe_preconfig")
|
2021-03-09 21:28:28 +00:00
|
|
|
|
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.
|
2022-08-18 17:18:24 +00:00
|
|
|
rbe_preconfig(
|
|
|
|
name = "buildkite_config",
|
|
|
|
toolchain = "ubuntu1804-bazel-java11",
|
|
|
|
)
|
2021-08-21 07:55:10 +00:00
|
|
|
|
2023-03-04 12:12:42 +00:00
|
|
|
http_archive(
|
|
|
|
name = "build_bazel_apple_support",
|
|
|
|
patches = ["//deps:apple_support.patch"],
|
|
|
|
sha256 = "77a121a0f5d4cd88824429464ad2bfb54bdc8a3bccdb4d31a6c846003a3f5e44",
|
|
|
|
url = "https://github.com/bazelbuild/apple_support/releases/download/1.4.1/apple_support.1.4.1.tar.gz",
|
|
|
|
)
|
|
|
|
|
2021-08-21 07:55:10 +00:00
|
|
|
http_archive(
|
|
|
|
name = "build_bazel_rules_apple",
|
2022-05-02 17:28:53 +00:00
|
|
|
sha256 = "12865e5944f09d16364aa78050366aca9dc35a32a018fa35f5950238b08bf744",
|
|
|
|
url = "https://github.com/bazelbuild/rules_apple/releases/download/0.34.2/rules_apple.0.34.2.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()
|