| # Copyright 2022 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| load("@bazel_skylib//rules:native_binary.bzl", "native_binary") | |
| native_binary( | |
| name = "cas_login", | |
| src = "//infra/tools:cas", | |
| out = "cas-login", | |
| args = ["login"], | |
| ) | |
| filegroup( | |
| name = "all_files", | |
| srcs = glob(["**/*"]), | |
| visibility = ["//visibility:public"], | |
| ) |