Merge pull request #24153 from perfinion:unbundle

PiperOrigin-RevId: 224869113
This commit is contained in:
TensorFlower Gardener 2018-12-10 13:19:03 -08:00
commit c0627e1f71
4 changed files with 23 additions and 3 deletions

View File

@ -1,13 +1,19 @@
package(
default_visibility = ["//visibility:public"],
)
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
filegroup( filegroup(
name = "icu4c/LICENSE", name = "icu4c/LICENSE",
visibility = ["//visibility:public"],
) )
filegroup( filegroup(
name = "icu4j/main/shared/licenses/LICENSE", name = "icu4j/main/shared/licenses/LICENSE",
visibility = ["//visibility:public"], )
cc_library(
name = "headers",
) )
cc_library( cc_library(
@ -15,7 +21,6 @@ cc_library(
deps = [ deps = [
":icuuc", ":icuuc",
], ],
visibility = ["//visibility:public"],
) )
cc_library( cc_library(

View File

@ -0,0 +1,13 @@
# Description: Keras Applications: set of pre-trained deep learning models.
licenses(["notice"]) # MIT
filegroup(
name = "LICENSE",
visibility = ["//visibility:public"],
)
py_library(
name = "keras_applications",
visibility = ["//visibility:public"],
)

View File

@ -12,4 +12,5 @@ def repo():
"https://github.com/keras-team/keras-applications/archive/1.0.6.tar.gz", "https://github.com/keras-team/keras-applications/archive/1.0.6.tar.gz",
], ],
build_file = "//third_party/keras_applications_archive:BUILD.bazel", build_file = "//third_party/keras_applications_archive:BUILD.bazel",
system_build_file = "//third_party/keras_applications_archive:BUILD.system",
) )

View File

@ -28,6 +28,7 @@ VALID_LIBS = [
"icu", "icu",
"jpeg", "jpeg",
"jsoncpp_git", "jsoncpp_git",
"keras_applications_archive",
"lmdb", "lmdb",
"nasm", "nasm",
"nsync", "nsync",