File: BUILD.bazel

package info (click to toggle)
caddy 2.6.2-14
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,876 kB
  • sloc: sh: 730; makefile: 30
file content (18 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package(
    default_visibility = ["//visibility:public"],
    licenses = ["notice"],  # Apache 2.0
)

genrule(
    name = "gen_test_fds",
    srcs = [
        "team.proto",
        "mutant.proto",
    ],
    outs = [
        "team.fds",
    ],
    cmd = ("$(location @com_google_protobuf//:protoc) " +
           "--descriptor_set_out=$@ $(SRCS)"),
    tools = ["@com_google_protobuf//:protoc"],
)