aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/platform/control_imports.py
blob: 713caf3f4f202ae5122b9b36c83c40f9ef5cd9cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Switch between Google or open source dependencies."""
# Switch between Google and OSS dependencies
USE_OSS = True

# Per-dependency switches determining whether each dependency is ready
# to be replaced by its OSS equivalence.
# TODO(danmane,mrry,opensource): Flip these switches, then remove them
OSS_APP = True
OSS_FLAGS = True
OSS_GFILE = True
OSS_GOOGLETEST = True
OSS_LOGGING = True
OSS_PARAMETERIZED = True