gtest.BUILD 253 字节
Newer Older
Y
Yi Wang 已提交
1
cc_library(
2 3 4 5 6 7 8
    name="gtest",
    srcs=glob(
        ["src/*.cc"], exclude=["src/gtest-all.cc"]),
    hdrs=glob(["include/**/*.h", "src/*.h"]),
    copts=["-Iexternal/gtest/include"],
    linkopts=["-pthread"],
    visibility=["//visibility:public"], )