From aec2496567a7bfd508fc487dec474263b6a7481f Mon Sep 17 00:00:00 2001 From: Skye Wanderman-Milne Date: Tue, 27 Mar 2018 11:54:26 -0700 Subject: [PATCH] Exclude Python C extension from tensorflow/c:srcs target. The Python extensions aren't part of the official C API. PiperOrigin-RevId: 190649576 --- tensorflow/c/BUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tensorflow/c/BUILD b/tensorflow/c/BUILD index 426f97b..7f03e40 100644 --- a/tensorflow/c/BUILD +++ b/tensorflow/c/BUILD @@ -34,6 +34,8 @@ filegroup( exclude = [ "c_api_experimental.cc", "c_api_experimental.h", + "python_api.cc", + "python_api.h", "*test*", ], ), -- 2.7.4