Skip to content

Commit 7a5445d

Browse files
committed
new ones
1 parent 7d8d804 commit 7a5445d

6 files changed

Lines changed: 3 additions & 7 deletions

File tree

android/rules.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ load(
5353
"//rules/android_local_test:rule.bzl",
5454
_android_local_test = "android_local_test",
5555
)
56-
5756
load(
5857
"//rules/android_sdk_repository:rule.bzl",
5958
_android_sdk_repository = "android_sdk_repository",

bzlmod_extensions/apksig.BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Defines targets for the apksigner build tool.
2-
load("@rules_java//java:defs.bzl", "java_binary", "java_library", "java_test")
2+
load("@rules_java//java:defs.bzl", "java_binary")
33

44
java_binary(
55
name = "apksigner",

bzlmod_extensions/com_android_dex.BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ java_library(
55
name = "dex",
66
srcs = glob(["dx/src/com/android/dex/**"]),
77
visibility = ["//visibility:public"],
8-
)
8+
)

rules/android_library/impl.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def _process_lint_rules(ctx, **_unused_sub_ctxs):
318318
),
319319
)
320320

321-
def _process_aar(ctx, resources_ctx, proguard_ctx, **unused_ctx):
321+
def _process_aar(ctx, resources_ctx, proguard_ctx, **_unused_ctx):
322322
aar_ctx = {
323323
_PROVIDERS: [],
324324
_VALIDATION_OUTPUTS: [],
@@ -470,7 +470,6 @@ def finalize(
470470
Args:
471471
ctx: The context.
472472
resources_ctx: ProviderInfo. The resources ctx.
473-
intellij_ctx: ProviderInfo. The intellij ctx.
474473
jvm_ctx: ProviderInfo. The jvm ctx.
475474
proguard_ctx: ProviderInfo. The proguard ctx.
476475
providers: sequence of providers. The providers to propagate.

rules/rules.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ load(
5353
"//rules/android_local_test:rule.bzl",
5454
_android_local_test = "android_local_test",
5555
)
56-
5756
load(
5857
"//rules/android_sdk_repository:rule.bzl",
5958
_android_sdk_repository = "android_sdk_repository",

toolchains/android/toolchain.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ _ATTRS = dict(
250250
allow_files = True,
251251
default = "//rules:robolectric_properties_template.txt",
252252
),
253-
254253
shuffle_jars = attr.label(
255254
cfg = "exec",
256255
default = Label("//tools/android:shuffle_jars"),

0 commit comments

Comments
 (0)