# Description:
#   Utility for applying the Graph Transform tool to a MetaGraphDef.

package(
    default_visibility = ["//visibility:public"],
    licenses = ["notice"],  # Apache 2.0
)

exports_files(["LICENSE"])

load(
    "//tensorflow:tensorflow.bzl",
    "py_test",
)

py_library(
    name = "meta_graph_transform",
    srcs = [
        "__init__.py",
        "meta_graph_transform.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/core:protos_all_py",
        "//tensorflow/python:framework",
        "//tensorflow/python:framework_ops",
        "//tensorflow/python:graph_util",
        "//tensorflow/python:session",
        "//tensorflow/python:training",
        "//tensorflow/python:util",
        "//tensorflow/python/saved_model:constants",
        "//tensorflow/tools/graph_transforms:transform_graph_py",
    ],
)

py_test(
    name = "meta_graph_transform_test",
    size = "small",
    srcs = ["meta_graph_transform_test.py"],
    python_version = "PY2",
    srcs_version = "PY2AND3",
    visibility = ["//visibility:private"],
    deps = [
        ":meta_graph_transform",
        "//tensorflow/core:protos_all_py",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:dtypes",
        "//tensorflow/python:framework_ops",
        "//tensorflow/python:session",
        "//tensorflow/python:training",
        "//tensorflow/python:util",
        "//tensorflow/python/saved_model:constants",
        "//tensorflow/tools/graph_transforms:transform_graph_py",
    ],
)

filegroup(
    name = "py_srcs",
    data = glob([
        "**/*.py",
    ]),
)
