BUILD 409 字节
Newer Older
1
load("@rules_cc//cc:defs.bzl", "cc_library")
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
load("//tools:cpplint.bzl", "cpplint")

package(default_visibility = ["//visibility:public"])

cc_library(
    name = "storytelling_gflags",
    srcs = ["storytelling_gflags.cc"],
    hdrs = ["storytelling_gflags.h"],
    copts = [
        "-DMODULE_NAME=\\\"storytelling\\\"",
    ],
    deps = [
        "@com_github_gflags_gflags//:gflags",
    ],
)

cpplint()