Sha256: 3308a74bc7b26cd025e7d34e9abc7b4ed5a025bf56d4ead4e5c597dd38ca9f62

Contents?: true

Size: 768 Bytes

Versions: 4

Compression:

Stored size: 768 Bytes

Contents

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

load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")

licenses(["notice"])

exports_files(["LICENSE"])

cc_library(
    name = "robots",
    srcs = [
        "robots.cc",
    ],
    hdrs = [
        "robots.h",
    ],
    deps = [
        "@com_google_absl//absl/base:core_headers",
        "@com_google_absl//absl/container:fixed_array",
        "@com_google_absl//absl/strings",
    ],
)

cc_test(
    name = "robots_test",
    srcs = ["robots_test.cc"],
    deps = [
        ":robots",
        "@com_google_absl//absl/strings",
        "@com_google_googletest//:gtest_main",
    ],
)

cc_binary(
    name = "robots_main",
    srcs = ["robots_main.cc"],
    deps = [
        ":robots",
    ],
)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
google_robotstxt_parser-0.0.6 ext/robotstxt/robotstxt/BUILD
google_robotstxt_parser-0.0.5 ext/robotstxt/robotstxt/BUILD
google_robotstxt_parser-0.0.4 ext/robotstxt/robotstxt/BUILD
google_robotstxt_parser-0.0.3 ext/robotstxt/robotstxt/BUILD