xla_data_proto is now a tf_proto_library_cc target. Also remove the now unused xla_proto_library starlark rule. PiperOrigin-RevId: 280608537 Change-Id: I2f3255066d0ffa5be1afd01602a5ea061f9824ff
17 lines
437 B
Python
17 lines
437 B
Python
"""Wrapper around proto libraries used inside the XLA codebase."""
|
|
|
|
def xla_py_proto_library(**kwargs):
|
|
# Note: we don't currently define a proto library target for Python in OSS.
|
|
_ignore = kwargs
|
|
pass
|
|
|
|
def xla_py_grpc_library(**kwargs):
|
|
# Note: we don't currently define any special targets for Python GRPC in OSS.
|
|
_ignore = kwargs
|
|
pass
|
|
|
|
ORC_JIT_MEMORY_MAPPER_TARGETS = []
|
|
|
|
def xla_py_test_deps():
|
|
return []
|