about summary refs log blame commit diff
path: root/absl/meta/BUILD.bazel
blob: 872751ef31e5f2bb0f043b251cf5e658825c77d0 (plain) (tree)




























                                                     
load(
    "//absl:copts.bzl",
    "ABSL_DEFAULT_COPTS",
    "ABSL_TEST_COPTS",
)

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

licenses(["unencumbered"])  # Owned by Google

cc_library(
    name = "type_traits",
    hdrs = ["type_traits.h"],
    copts = ABSL_DEFAULT_COPTS,
    deps = [
        "//absl/base:config",
    ],
)

cc_test(
    name = "type_traits_test",
    srcs = ["type_traits_test.cc"],
    copts = ABSL_TEST_COPTS,
    deps = [
        ":type_traits",
        "//absl/base:core_headers",
        "@com_google_googletest//:gtest_main",
    ],
)