blob: 6828ddca36d317186ef9f190b95c76a7537056ca [file] [log] [blame]
Adam Michael87419402017-01-05 16:05:56 +00001package(default_visibility = ["//visibility:public"])
2
3alias(
4 name = "sdk",
5 actual = "//external:android/sdk",
6)
7
8android_library(
9 name = "incremental_stub_application",
10 deps = ["//src/tools/android/java/com/google/devtools/build/android/incrementaldeployment:incremental_stub_application"],
11)
12
13android_library(
14 name = "incremental_split_stub_application",
15 deps = ["//src/tools/android/java/com/google/devtools/build/android/incrementaldeployment:incremental_split_stub_application"],
16)
17
18alias(
Googler7ba40f82017-02-08 20:10:46 +000019 name = "busybox",
20 actual = "//src/tools/android/java/com/google/devtools/build/android:ResourceProcessorBusyBox",
Adam Michael87419402017-01-05 16:05:56 +000021)
22
23alias(
24 name = "merge_dexzips",
25 actual = "//src/tools/android/java/com/google/devtools/build/android/ziputils:reducer",
26)
27
28alias(
29 name = "shuffle_jars",
30 actual = "//src/tools/android/java/com/google/devtools/build/android/ziputils:mapper",
31)
32
33alias(
34 name = "dexbuilder",
35 actual = "//src/tools/android/java/com/google/devtools/build/android/dexer:DexBuilder",
36)
37
38alias(
39 name = "dexmerger",
40 actual = "//src/tools/android/java/com/google/devtools/build/android/dexer:DexFileMerger",
41)
42
Adam Michael29aa0eb2017-02-10 02:43:34 +000043alias(
Adam Michael87419402017-01-05 16:05:56 +000044 name = "desugar_java8",
ajmichael20824c12017-05-10 11:17:30 -040045 actual = "//src/tools/android/java/com/google/devtools/build/android/desugar:Desugar_embedded",
Adam Michael87419402017-01-05 16:05:56 +000046)
47
Adam Michael29aa0eb2017-02-10 02:43:34 +000048# Bazel puts this on the bootclasspath of android_* targets to support Java 8
49# if requested.
Adam Michael87419402017-01-05 16:05:56 +000050filegroup(
51 name = "desugar_java8_extra_bootclasspath",
cushon40d9cb32017-05-06 12:15:25 -040052 srcs = ["java_lang_extras.jar"],
Adam Michael87419402017-01-05 16:05:56 +000053 visibility = ["//visibility:public"],
54)
55
cushon40d9cb32017-05-06 12:15:25 -040056# javac needs this Jar to compile lambdas, method references, and type annotations.
57# These classes are not part of the android.jar.
Adam Michael29aa0eb2017-02-10 02:43:34 +000058genrule(
cushon40d9cb32017-05-06 12:15:25 -040059 name = "gen_java_lang_extras_jar",
Adam Michael29aa0eb2017-02-10 02:43:34 +000060 srcs = [
Adam Michael29aa0eb2017-02-10 02:43:34 +000061 "@local_jdk//:bootclasspath"
62 ],
Adam Michaelb95d4a92017-02-10 22:21:47 +000063 tools = [
xingao202d5912017-06-01 19:23:29 +020064 "@bazel_tools//tools/jdk:singlejar",
Adam Michaelb95d4a92017-02-10 22:21:47 +000065 ],
cushon40d9cb32017-05-06 12:15:25 -040066 outs = ["java_lang_extras.jar"],
Adam Michael29aa0eb2017-02-10 02:43:34 +000067 cmd = """
68 for jar in $(locations @local_jdk//:bootclasspath); do
69 if [[ "$${jar}" == *"/rt.jar" ]]; then
xingao202d5912017-06-01 19:23:29 +020070 $(location @bazel_tools//tools/jdk:singlejar) \
Adam Michael29aa0eb2017-02-10 02:43:34 +000071 --exclude_build_data \
72 --dont_change_compression \
73 --sources $${jar} \
74 --include_prefixes "java/lang/invoke/" \
cushon40d9cb32017-05-06 12:15:25 -040075 --include_prefixes "java/lang/annotation/" \
Adam Michael29aa0eb2017-02-10 02:43:34 +000076 --output $@
77 break
78 fi
79 done
80 """,
81 visibility = ["//visibility:private"],
82)
83
Adam Michael87419402017-01-05 16:05:56 +000084alias(
85 name = "IdlClass",
86 actual = "//src/tools/android/java/com/google/devtools/build/android/idlclass:IdlClass",
87)
88
Adam Michael87419402017-01-05 16:05:56 +000089py_binary(
90 name = "merge_manifests",
91 srcs = [
92 "android_permissions.py",
93 "merge_manifests.py",
94 ],
95 deps = [
96 "//third_party/py/gflags",
97 ],
98)
99
100py_binary(
101 name = "build_incremental_dexmanifest",
102 srcs = [":build_incremental_dexmanifest.py"],
103 deps = [],
104)
105
106py_binary(
107 name = "build_split_manifest",
108 srcs = ["build_split_manifest.py"],
109 deps = [
110 "//third_party/py/gflags",
111 ],
112)
113
114py_binary(
115 name = "incremental_install",
116 srcs = ["incremental_install.py"],
117 deps = [
118 "//third_party/py/concurrent:futures",
119 "//third_party/py/gflags",
120 ],
121)
122
123py_binary(
124 name = "strip_resources",
125 srcs = ["strip_resources.py"],
126 deps = [
127 "//third_party/py/gflags",
128 ],
129)
130
131py_binary(
132 name = "aar_native_libs_zip_creator",
133 srcs = [
134 "aar_native_libs_zip_creator.py",
135 ],
136 deps = [
137 "//third_party/py/gflags",
138 ],
139)
140
141py_binary(
142 name = "stubify_manifest",
143 srcs = ["stubify_manifest.py"],
144 deps = [
145 "//third_party/py/gflags",
146 ],
147)
148
149sh_binary(
150 name = "rex_wrapper",
151 srcs = ["fail.sh"],
152)
153
154sh_binary(
155 name = "zip_manifest_creator",
156 srcs = ["zip_manifest_creator.sh"],
157 data = ["//tools/zip:zipper"],
158)
159
160py_binary(
161 name = "aar_embedded_jars_extractor",
162 srcs = ["aar_embedded_jars_extractor.py"],
163 deps = ["//third_party/py/gflags"],
164)
165
166py_binary(
167 name = "resource_extractor",
168 srcs = ["resource_extractor.py"],
169)
170
Adam Michaeld6eaf582017-01-27 01:57:25 +0000171alias(
172 name = "android_runtest",
173 actual = "fail.sh",
174)
175
176alias(
177 name = "adb_static",
178 actual = "fail.sh",
179)
180
181alias(
182 name = "adb",
183 actual = "@androidsdk//:adb",
184)
185
Adam Michael87419402017-01-05 16:05:56 +0000186# If needed, this file can be regenerated by (validity is 30 * 365 days):
187# keytool -genkeypair \
188# -alias androiddebugkey \
189# -dname "CN=Android Debug, O=Android, C=US" \
190# -keystore cica \
191# -sigalg SHA256withDSA \
192# -validity 10950
193filegroup(
194 name = "debug_keystore",
195 srcs = ["bazel_debug.keystore"],
196)
gregceed666fc2017-04-17 19:42:12 +0200197
198alias(
199 name = "databinding_annotation_processor",
200 actual = "@android_databinding//:annotation_processor",
201)
ajmichael71ed1ee2017-05-05 05:15:02 +0200202
ajmichaelc2188eb2017-07-24 19:33:18 +0200203alias(
204 name = "jarjar_bin",
205 actual = "//third_party/java/jarjar:jarjar_bin",
206)
207
ajmichael71ed1ee2017-05-05 05:15:02 +0200208# This is the default binding of //external:android/sdk. If someone attempts to
209# build a rule that depends on //external:android/sdk without setting up
210# android_sdk_repository in their WORKSPACE, the genrule will fail with a
211# helpful error message.
212android_sdk(
213 name = "poison_pill_android_sdk",
214 proguard = ":error_message",
215 aapt = ":error_message",
216 dx = ":error_message",
217 main_dex_list_creator = ":error_message",
218 adb = ":error_message",
219 framework_aidl = ":error_message",
220 aidl = ":error_message",
221 android_jar = ":error_message.jar",
222 shrinked_android_jar = ":error_message.jar",
223 annotations_jar = ":error_message.jar",
224 main_dex_classes = ":error_message",
225 apksigner = ":error_message",
226 zipalign = ":error_message",
227 resource_extractor = "error_message",
228)
229
230genrule(
231 name = "no_android_sdk_repository_error",
232 outs = ["error_message", "error_message.jar"],
233 cmd = """echo \
234 This build requires an Android SDK. Please add the android_sdk_repository \
235 rule to your WORKSPACE. ; \
236 exit 1 """,
237)
ajmichael22d05eb2017-05-31 22:34:34 +0200238
239# //external:has_androidsdk is bound to either
240# @bazel_tools//tools/android:always_true or
241# @bazel_tools//tools/android:always_false depending on whether
242# android_sdk_repository has run. This allows targets to depend on targets from
243# @androidsdk if and only if the user has an android_sdk_repository set up.
244
245config_feature_flag(
246 name = "true",
247 default_value = "true",
248 allowed_values = ["true", "false"],
249)
250
251config_setting(
252 name = "always_true",
253 flag_values = {
254 ":true": "true"
255 },
256)
257
258config_setting(
259 name = "always_false",
260 flag_values = {
261 ":true": "false",
262 },
263)