mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-12-03 02:53:18 +00:00
6cc7e712fb
As a result of this commit, rules_cc now contains the required bzl files to be tested as part of the Bazel federation.
13 lines
313 B
Python
13 lines
313 B
Python
load("@bazel_federation//:repositories.bzl", "bazel_skylib", "protobuf", "rules_go")
|
|
load("@bazel_federation//:third_party_repositories.bzl", "abseil_py", "py_mock", "six", "zlib")
|
|
|
|
def rules_cc_internal_deps():
|
|
bazel_skylib()
|
|
protobuf()
|
|
rules_go()
|
|
|
|
abseil_py()
|
|
py_mock()
|
|
six()
|
|
zlib()
|