1*d4726bddSHONG Yifanload("@bazel_skylib//:bzl_library.bzl", "bzl_library") 2*d4726bddSHONG Yifan 3*d4726bddSHONG Yifanpackage(default_visibility = ["//visibility:public"]) 4*d4726bddSHONG Yifan 5*d4726bddSHONG Yifantoolchain_type( 6*d4726bddSHONG Yifan name = "toolchain_type", 7*d4726bddSHONG Yifan) 8*d4726bddSHONG Yifan 9*d4726bddSHONG Yifantoolchain( 10*d4726bddSHONG Yifan name = "default_prost_toolchain", 11*d4726bddSHONG Yifan toolchain = "//proto/prost/private:default_prost_toolchain_impl", 12*d4726bddSHONG Yifan toolchain_type = ":toolchain_type", 13*d4726bddSHONG Yifan) 14*d4726bddSHONG Yifan 15*d4726bddSHONG Yifanbzl_library( 16*d4726bddSHONG Yifan name = "bzl_lib", 17*d4726bddSHONG Yifan srcs = glob(["**/*.bzl"]), 18*d4726bddSHONG Yifan deps = [ 19*d4726bddSHONG Yifan "//proto/prost/private:bzl_lib", 20*d4726bddSHONG Yifan "//rust:bzl_lib", 21*d4726bddSHONG Yifan ], 22*d4726bddSHONG Yifan) 23