File: BUILD.bazel

package info (click to toggle)
android-cuttlefish 1.0.1-0~exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 7,192 kB
  • sloc: cpp: 39,149; sh: 2,523; javascript: 242; exp: 152; python: 125; makefile: 88
file content (10 lines) | stat: -rw-r--r-- 235 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
package(
    default_visibility = ["//visibility:public"],
)

genrule(
    name = "build_version_header",
    srcs = ["build_version.h.in"],
    outs = ["build/version.h"],
    cmd = "sed -e \"s|@VCS_TAG@|`git describe`|\" $< > $@",
)