xref: /aosp_15_r20/external/bazelbuild-rules_cc/cc/repositories.bzl (revision eed53cd41c5909d05eedc7ad9720bb158fd93452)
1*eed53cd4SHONG Yifan"""Repository rules entry point module for rules_cc."""
2*eed53cd4SHONG Yifan
3*eed53cd4SHONG Yifanload("//cc/private/toolchain:cc_configure.bzl", "cc_configure")
4*eed53cd4SHONG Yifan
5*eed53cd4SHONG Yifandef rules_cc_dependencies():
6*eed53cd4SHONG Yifan    pass
7*eed53cd4SHONG Yifan
8*eed53cd4SHONG Yifan# buildifier: disable=unnamed-macro
9*eed53cd4SHONG Yifandef rules_cc_toolchains(*args):
10*eed53cd4SHONG Yifan    cc_configure(*args)
11