"official/nlp/transformer/misc.py" did not exist on "bd73fdfe15156372b1d00e6befcb459694606fdf"
BUILD.bazel 348 Bytes
Newer Older
Ezekiel Warren's avatar
Ezekiel Warren committed
1
2
3
4
5
6
7
8
9
10
cc_library(
    name = "yaml-cpp_internal",
    visibility = ["//:__subpackages__"],
    strip_include_prefix = "src",
    hdrs = glob(["src/**/*.h"]),
)

cc_library(
    name = "yaml-cpp",
    visibility = ["//visibility:public"],
11
    includes = ["include"],
Ezekiel Warren's avatar
Ezekiel Warren committed
12
13
14
    hdrs = glob(["include/**/*.h"]),
    srcs = glob(["src/**/*.cpp", "src/**/*.h"]),
)