Home | History | Annotate | Download | only in test_util
      1 # Description: Utilities to aid testing.
      2 
      3 package(
      4     default_visibility = ["//tensorflow:internal"],
      5 )
      6 
      7 licenses(["notice"])  # Apache 2.0
      8 
      9 exports_files(["LICENSE"])
     10 
     11 filegroup(
     12     name = "all_files",
     13     srcs = glob(
     14         ["**/*"],
     15         exclude = [
     16             "**/METADATA",
     17             "**/OWNERS",
     18         ],
     19     ),
     20 )
     21 
     22 cc_library(
     23     name = "fake_clock_env",
     24     testonly = 1,
     25     hdrs = ["fake_clock_env.h"],
     26     visibility = ["//visibility:public"],
     27     deps = [
     28         "//tensorflow/core/kernels/batching_util:fake_clock_env",
     29     ],
     30 )
     31