Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: third_party/ijar/BUILD

Issue 1323053003: Add ijar to third_party and use it for generating .jar.toc files in GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compiled_action
Patch Set: fix release mode Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | third_party/ijar/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 package(
2 default_visibility = [
3 "//src:__subpackages__",
4 "//third_party/ijar:__subpackages__",
5 ],
6 )
7
8 licenses(["notice"]) # Apache 2.0
9
10 cc_library(
11 name = "zip",
12 srcs = ["zip.cc"],
13 hdrs = [
14 "common.h",
15 "zip.h",
16 ],
17 # TODO(bazel-team): we should replace the -lz flag, it is non-hermetic.
18 # We should instead use a new_local_repository once the autoconf
19 # mechanism is ready.
20 linkopts = ["-lz"],
21 )
22
23 cc_binary(
24 name = "zipper",
25 srcs = ["zip_main.cc"],
26 visibility = ["//visibility:public"],
27 deps = [":zip"],
28 )
29
30 cc_binary(
31 name = "ijar",
32 srcs = [
33 "classfile.cc",
34 "ijar.cc",
35 ],
36 visibility = ["//visibility:public"],
37 deps = [":zip"],
38 )
OLDNEW
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | third_party/ijar/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698