1load("@bazel_skylib//rules:build_test.bzl", "build_test") 2 3package(default_visibility = ["//visibility:public"]) 4 5licenses(["notice"]) 6 7build_test( 8 name = "bzl_libraries_build_test", 9 targets = [ 10 # keep sorted 11 "//python:current_py_toolchain_bzl", 12 "//python:defs_bzl", 13 "//python:proto_bzl", 14 "//python:py_binary_bzl", 15 "//python:py_cc_link_params_info_bzl", 16 "//python:py_import_bzl", 17 "//python:py_info_bzl", 18 "//python:py_library_bzl", 19 "//python:py_runtime_bzl", 20 "//python:py_runtime_info_bzl", 21 "//python:py_runtime_pair_bzl", 22 "//python:py_test_bzl", 23 "//python/cc:py_cc_toolchain_bzl", 24 "//python/cc:py_cc_toolchain_info_bzl", 25 "//python/entry_points:py_console_script_binary_bzl", 26 ], 27) 28