Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 1 | package(default_visibility = ["//visibility:public"]) |
| 2 | |
| 3 | alias( |
| 4 | name = "sdk", |
| 5 | actual = "//external:android/sdk", |
| 6 | ) |
| 7 | |
| 8 | android_library( |
| 9 | name = "incremental_stub_application", |
| 10 | deps = ["//src/tools/android/java/com/google/devtools/build/android/incrementaldeployment:incremental_stub_application"], |
| 11 | ) |
| 12 | |
| 13 | android_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 | |
| 18 | alias( |
Googler | 7ba40f8 | 2017-02-08 20:10:46 +0000 | [diff] [blame] | 19 | name = "busybox", |
| 20 | actual = "//src/tools/android/java/com/google/devtools/build/android:ResourceProcessorBusyBox", |
Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 21 | ) |
| 22 | |
| 23 | alias( |
| 24 | name = "merge_dexzips", |
| 25 | actual = "//src/tools/android/java/com/google/devtools/build/android/ziputils:reducer", |
| 26 | ) |
| 27 | |
| 28 | alias( |
| 29 | name = "shuffle_jars", |
| 30 | actual = "//src/tools/android/java/com/google/devtools/build/android/ziputils:mapper", |
| 31 | ) |
| 32 | |
| 33 | alias( |
| 34 | name = "dexbuilder", |
| 35 | actual = "//src/tools/android/java/com/google/devtools/build/android/dexer:DexBuilder", |
| 36 | ) |
| 37 | |
| 38 | alias( |
| 39 | name = "dexmerger", |
| 40 | actual = "//src/tools/android/java/com/google/devtools/build/android/dexer:DexFileMerger", |
| 41 | ) |
| 42 | |
Adam Michael | 29aa0eb | 2017-02-10 02:43:34 +0000 | [diff] [blame] | 43 | alias( |
Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 44 | name = "desugar_java8", |
ajmichael | 20824c1 | 2017-05-10 11:17:30 -0400 | [diff] [blame] | 45 | actual = "//src/tools/android/java/com/google/devtools/build/android/desugar:Desugar_embedded", |
Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 46 | ) |
| 47 | |
Adam Michael | 29aa0eb | 2017-02-10 02:43:34 +0000 | [diff] [blame] | 48 | # Bazel puts this on the bootclasspath of android_* targets to support Java 8 |
| 49 | # if requested. |
Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 50 | filegroup( |
| 51 | name = "desugar_java8_extra_bootclasspath", |
cushon | 40d9cb3 | 2017-05-06 12:15:25 -0400 | [diff] [blame] | 52 | srcs = ["java_lang_extras.jar"], |
Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 53 | visibility = ["//visibility:public"], |
| 54 | ) |
| 55 | |
cushon | 40d9cb3 | 2017-05-06 12:15:25 -0400 | [diff] [blame] | 56 | # javac needs this Jar to compile lambdas, method references, and type annotations. |
| 57 | # These classes are not part of the android.jar. |
Adam Michael | 29aa0eb | 2017-02-10 02:43:34 +0000 | [diff] [blame] | 58 | genrule( |
cushon | 40d9cb3 | 2017-05-06 12:15:25 -0400 | [diff] [blame] | 59 | name = "gen_java_lang_extras_jar", |
Adam Michael | 29aa0eb | 2017-02-10 02:43:34 +0000 | [diff] [blame] | 60 | srcs = [ |
Adam Michael | 29aa0eb | 2017-02-10 02:43:34 +0000 | [diff] [blame] | 61 | "@local_jdk//:bootclasspath" |
| 62 | ], |
Adam Michael | b95d4a9 | 2017-02-10 22:21:47 +0000 | [diff] [blame] | 63 | tools = [ |
xingao | 202d591 | 2017-06-01 19:23:29 +0200 | [diff] [blame] | 64 | "@bazel_tools//tools/jdk:singlejar", |
Adam Michael | b95d4a9 | 2017-02-10 22:21:47 +0000 | [diff] [blame] | 65 | ], |
cushon | 40d9cb3 | 2017-05-06 12:15:25 -0400 | [diff] [blame] | 66 | outs = ["java_lang_extras.jar"], |
Adam Michael | 29aa0eb | 2017-02-10 02:43:34 +0000 | [diff] [blame] | 67 | cmd = """ |
| 68 | for jar in $(locations @local_jdk//:bootclasspath); do |
| 69 | if [[ "$${jar}" == *"/rt.jar" ]]; then |
xingao | 202d591 | 2017-06-01 19:23:29 +0200 | [diff] [blame] | 70 | $(location @bazel_tools//tools/jdk:singlejar) \ |
Adam Michael | 29aa0eb | 2017-02-10 02:43:34 +0000 | [diff] [blame] | 71 | --exclude_build_data \ |
| 72 | --dont_change_compression \ |
| 73 | --sources $${jar} \ |
| 74 | --include_prefixes "java/lang/invoke/" \ |
cushon | 40d9cb3 | 2017-05-06 12:15:25 -0400 | [diff] [blame] | 75 | --include_prefixes "java/lang/annotation/" \ |
Adam Michael | 29aa0eb | 2017-02-10 02:43:34 +0000 | [diff] [blame] | 76 | --output $@ |
| 77 | break |
| 78 | fi |
| 79 | done |
| 80 | """, |
| 81 | visibility = ["//visibility:private"], |
| 82 | ) |
| 83 | |
Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 84 | alias( |
| 85 | name = "IdlClass", |
| 86 | actual = "//src/tools/android/java/com/google/devtools/build/android/idlclass:IdlClass", |
| 87 | ) |
| 88 | |
Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 89 | py_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 | |
| 100 | py_binary( |
| 101 | name = "build_incremental_dexmanifest", |
| 102 | srcs = [":build_incremental_dexmanifest.py"], |
| 103 | deps = [], |
| 104 | ) |
| 105 | |
| 106 | py_binary( |
| 107 | name = "build_split_manifest", |
| 108 | srcs = ["build_split_manifest.py"], |
| 109 | deps = [ |
| 110 | "//third_party/py/gflags", |
| 111 | ], |
| 112 | ) |
| 113 | |
| 114 | py_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 | |
| 123 | py_binary( |
| 124 | name = "strip_resources", |
| 125 | srcs = ["strip_resources.py"], |
| 126 | deps = [ |
| 127 | "//third_party/py/gflags", |
| 128 | ], |
| 129 | ) |
| 130 | |
| 131 | py_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 | |
| 141 | py_binary( |
| 142 | name = "stubify_manifest", |
| 143 | srcs = ["stubify_manifest.py"], |
| 144 | deps = [ |
| 145 | "//third_party/py/gflags", |
| 146 | ], |
| 147 | ) |
| 148 | |
| 149 | sh_binary( |
| 150 | name = "rex_wrapper", |
| 151 | srcs = ["fail.sh"], |
| 152 | ) |
| 153 | |
| 154 | sh_binary( |
| 155 | name = "zip_manifest_creator", |
| 156 | srcs = ["zip_manifest_creator.sh"], |
| 157 | data = ["//tools/zip:zipper"], |
| 158 | ) |
| 159 | |
| 160 | py_binary( |
| 161 | name = "aar_embedded_jars_extractor", |
| 162 | srcs = ["aar_embedded_jars_extractor.py"], |
| 163 | deps = ["//third_party/py/gflags"], |
| 164 | ) |
| 165 | |
| 166 | py_binary( |
| 167 | name = "resource_extractor", |
| 168 | srcs = ["resource_extractor.py"], |
| 169 | ) |
| 170 | |
Adam Michael | d6eaf58 | 2017-01-27 01:57:25 +0000 | [diff] [blame] | 171 | alias( |
| 172 | name = "android_runtest", |
| 173 | actual = "fail.sh", |
| 174 | ) |
| 175 | |
| 176 | alias( |
| 177 | name = "adb_static", |
| 178 | actual = "fail.sh", |
| 179 | ) |
| 180 | |
| 181 | alias( |
| 182 | name = "adb", |
| 183 | actual = "@androidsdk//:adb", |
| 184 | ) |
| 185 | |
Adam Michael | 8741940 | 2017-01-05 16:05:56 +0000 | [diff] [blame] | 186 | # 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 |
| 193 | filegroup( |
| 194 | name = "debug_keystore", |
| 195 | srcs = ["bazel_debug.keystore"], |
| 196 | ) |
gregce | ed666fc | 2017-04-17 19:42:12 +0200 | [diff] [blame] | 197 | |
| 198 | alias( |
| 199 | name = "databinding_annotation_processor", |
| 200 | actual = "@android_databinding//:annotation_processor", |
| 201 | ) |
ajmichael | 71ed1ee | 2017-05-05 05:15:02 +0200 | [diff] [blame] | 202 | |
ajmichael | c2188eb | 2017-07-24 19:33:18 +0200 | [diff] [blame] | 203 | alias( |
| 204 | name = "jarjar_bin", |
| 205 | actual = "//third_party/java/jarjar:jarjar_bin", |
| 206 | ) |
| 207 | |
ajmichael | 71ed1ee | 2017-05-05 05:15:02 +0200 | [diff] [blame] | 208 | # 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. |
| 212 | android_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 | |
| 230 | genrule( |
| 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 | ) |
ajmichael | 22d05eb | 2017-05-31 22:34:34 +0200 | [diff] [blame] | 238 | |
| 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 | |
| 245 | config_feature_flag( |
| 246 | name = "true", |
| 247 | default_value = "true", |
| 248 | allowed_values = ["true", "false"], |
| 249 | ) |
| 250 | |
| 251 | config_setting( |
| 252 | name = "always_true", |
| 253 | flag_values = { |
| 254 | ":true": "true" |
| 255 | }, |
| 256 | ) |
| 257 | |
| 258 | config_setting( |
| 259 | name = "always_false", |
| 260 | flag_values = { |
| 261 | ":true": "false", |
| 262 | }, |
| 263 | ) |