aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/BUILD
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-12-21 16:32:07 +0000
committerGravatar Klaus Aehlig <aehlig@google.com>2016-12-21 17:26:27 +0000
commit6d31cb01b80d0560c0c083d40e641816877b3d06 (patch)
tree55acbdbc5c25be32ce927b3a0509c7e3f7799541 /third_party/ijar/BUILD
parentd83e7ef2485c8fe2d9dc8ca938f694b34d824ed2 (diff)
--
PiperOrigin-RevId: 142666783 MOS_MIGRATED_REVID=142666783
Diffstat (limited to 'third_party/ijar/BUILD')
-rw-r--r--third_party/ijar/BUILD77
1 files changed, 0 insertions, 77 deletions
diff --git a/third_party/ijar/BUILD b/third_party/ijar/BUILD
deleted file mode 100644
index 41376208aa..0000000000
--- a/third_party/ijar/BUILD
+++ /dev/null
@@ -1,77 +0,0 @@
-package(
- default_visibility = [
- "//src:__subpackages__",
- "//third_party/ijar:__subpackages__",
- ],
-)
-
-licenses(["notice"]) # Apache 2.0
-
-cc_library(
- name = "zip",
- srcs = [
- "zip.cc",
- ] + select({
- "//src:windows": [
- "mapped_file_windows.cc",
- ],
- "//src:windows_msvc": [
- "mapped_file_windows.cc",
- ],
- "//conditions:default": [
- "mapped_file_unix.cc",
- ],
- }),
- hdrs = [
- "common.h",
- "mapped_file.h",
- "zip.h",
- ],
- deps = [
- ":platform_utils",
- ":zlib_client",
- ],
-)
-
-cc_library(
- name = "zlib_client",
- srcs = ["zlib_client.cc"],
- hdrs = [
- "common.h",
- "zlib_client.h",
- ],
- deps = ["//third_party/zlib"],
-)
-
-cc_library(
- name = "platform_utils",
- srcs = ["platform_utils.cc"],
- hdrs = [
- "common.h",
- "platform_utils.h",
- ],
- visibility = ["//visibility:private"],
-)
-
-cc_binary(
- name = "zipper",
- srcs = ["zip_main.cc"],
- visibility = ["//visibility:public"],
- deps = [":zip"],
-)
-
-cc_binary(
- name = "ijar",
- srcs = [
- "classfile.cc",
- "ijar.cc",
- ],
- visibility = ["//visibility:public"],
- deps = [":zip"],
-)
-
-filegroup(
- name = "srcs",
- srcs = glob(["**"]) + ["//third_party/ijar/test:srcs"],
- visibility = ["//third_party:__pkg__"],
-)