package(
    # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
    default_testonly = 1,
    default_visibility = ["//visibility:public"],
    licenses = ["notice"],
)

cc_library(
    name = "all_generators",
    hdrs = [
        "add.h",
    ],
    deps = [
        ":add",
        "//tensorflow/lite/delegates/gpu/common/testing/feature_parity:utils",
    ],
)

cc_library(
    name = "add",
    srcs = ["add.cc"],
    hdrs = ["add.h"],
    deps = [
        "//tensorflow/lite:schema_fbs_version",
        "//tensorflow/lite/delegates/gpu/common/testing/feature_parity:utils",
        "//tensorflow/lite/schema:schema_fbs",
        "@flatbuffers",
    ],
)
