-
-
Notifications
You must be signed in to change notification settings - Fork 686
Expand file tree
/
Copy pathBUILD.bazel
More file actions
27 lines (24 loc) · 820 Bytes
/
BUILD.bazel
File metadata and controls
27 lines (24 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
load("@bazel_skylib//rules:build_test.bzl", "build_test")
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
build_test(
name = "bzl_libraries_build_test",
targets = [
# keep sorted
"//python:current_py_toolchain_bzl",
"//python:defs_bzl",
"//python:proto_bzl",
"//python:py_binary_bzl",
"//python:py_cc_link_params_info_bzl",
"//python:py_import_bzl",
"//python:py_info_bzl",
"//python:py_library_bzl",
"//python:py_runtime_bzl",
"//python:py_runtime_info_bzl",
"//python:py_runtime_pair_bzl",
"//python:py_test_bzl",
"//python/cc:py_cc_toolchain_bzl",
"//python/cc:py_cc_toolchain_info_bzl",
"//python/entry_points:py_console_script_binary_bzl",
],
)