Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Load the builtin Bazel java rules from @rules_java #2286

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions runner/android_junit_runner/BUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Publicly visible alias to the runner target

load("@rules_java//java:defs.bzl", "java_library")

package(default_applicable_licenses = ["//:license"])

licenses(["notice"])
Expand Down
2 changes: 2 additions & 0 deletions runner/monitor/BUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Publicly visible alias to the monitor target

load("@rules_java//java:defs.bzl", "java_library")

package(default_applicable_licenses = ["//:license"])

licenses(["notice"])
Expand Down
1 change: 1 addition & 0 deletions runner/monitor/java/androidx/test/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Description: Build rules for building androidx.test from source

load("@build_bazel_rules_android//android:rules.bzl", "android_library")
load("@rules_java//java:defs.bzl", "java_library")
load("//build_extensions:api_checks.bzl", "api_checks")
load("//build_extensions:dackka_test.bzl", "dackka_test")
load("//build_extensions:kt_android_library.bzl", "kt_android_library")
Expand Down
2 changes: 2 additions & 0 deletions runner/rules/BUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Publicly visible alias to the AXT rules target

load("@rules_java//java:defs.bzl", "java_library")

package(default_applicable_licenses = ["//:license"])

licenses(["notice"])
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
load("@rules_java//java:defs.bzl", "java_library")
load("//build_extensions:kt_android_library.bzl", "kt_android_library")

# A shell command execution server to allow shell commands to be run at elevated permissions
Expand Down
1 change: 1 addition & 0 deletions services/storage/java/androidx/test/services/storage/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Exposes sd card storage to tests regardless of permissions.

load("@build_bazel_rules_android//android:rules.bzl", "android_library")
load("@rules_java//java:defs.bzl", "java_library")
load("//build_extensions:api_checks.bzl", "api_checks")
load("//build_extensions/maven:axt_android_aar.bzl", "axt_android_aar")
load("//build_extensions/maven:maven_artifact.bzl", "maven_artifact")
Expand Down
Loading