Automatic code cleanup.

PiperOrigin-RevId: 566245154
Change-Id: Id906c52da9c922cee77782994a63c6b1dc656fc8
This commit is contained in:
Googler 2023-09-18 03:04:01 -07:00 committed by Copybara-Service
parent 9c1686d2cc
commit fc88354c6f
3 changed files with 3 additions and 3 deletions

View File

@ -12,10 +12,11 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# A collection of examples showing the usage of rules_cc
load("@bazel_skylib//:bzl_library.bzl", "bzl_library") load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
load("@bazel_skylib//rules:common_settings.bzl", "bool_flag") load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")
# A collection of examples showing the usage of rules_cc
licenses(["notice"]) licenses(["notice"])
bool_flag( bool_flag(

View File

@ -16,6 +16,7 @@ load("//examples/my_c_compile:my_c_compile.bzl", "my_c_compile")
# limitations under the License. # limitations under the License.
# Example showing how to create a custom Starlark rule that just compiles C sources # Example showing how to create a custom Starlark rule that just compiles C sources
licenses(["notice"]) licenses(["notice"])
my_c_compile( my_c_compile(

View File

@ -13,8 +13,6 @@
# limitations under the License. # limitations under the License.
load("@bazel_skylib//:bzl_library.bzl", "bzl_library") load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
# Go rules
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
load("@rules_python//python:defs.bzl", "py_binary", "py_library", "py_test") load("@rules_python//python:defs.bzl", "py_binary", "py_library", "py_test")