1"""Wrapper around proto libraries used inside the XLA codebase.""" 2 3def xla_py_proto_library(**kwargs): 4 # Note: we don't currently define a proto library target for Python in OSS. 5 _ignore = kwargs 6 pass 7 8def xla_py_grpc_library(**kwargs): 9 # Note: we don't currently define any special targets for Python GRPC in OSS. 10 _ignore = kwargs 11 pass 12 13ORC_JIT_MEMORY_MAPPER_TARGETS = [] 14 15def xla_py_test_deps(): 16 return [] 17