Compatibility compile fix

PiperOrigin-RevId: 258380926
This commit is contained in:
A. Unique TensorFlower 2019-07-16 09:22:36 -07:00 committed by TensorFlower Gardener
parent 307abb30de
commit d2233029df
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,5 @@
load("//tensorflow/lite:special_rules.bzl", "tflite_extra_gles_deps")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
@ -56,7 +58,7 @@ cc_library(
"//tensorflow/lite/schema:schema_fbs",
],
":tflite_gpu_binary_release": [],
}),
}) + tflite_extra_gles_deps(),
)
objc_library(

View File

@ -8,3 +8,7 @@ def tflite_portable_test_suite(**kwargs):
def ios_visibility_whitelist():
"""This is a no-op outside of Google."""
pass
def tflite_extra_gles_deps():
"""This is a no-op outside of Google."""
return []