Skip to content

Commit

Permalink
bazel: Load from @rules_android//android:rules.bzl
Browse files Browse the repository at this point in the history
While library.bzl does not exist in both rules_android 0.1.0 and 0.6.0,
rules.bzl does.

Bug: b/372510795
Change-Id: I33176b452b1856c5dcfd884d766d945006bc107d
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/256834
Lint: Lint 🤖 <[email protected]>
Reviewed-by: Ted Pudlik <[email protected]>
Docs-Not-Needed: Armando Montanez <[email protected]>
Pigweed-Auto-Submit: Armando Montanez <[email protected]>
Presubmit-Verified: CQ Bot Account <[email protected]>
Commit-Queue: Auto-Submit <[email protected]>
  • Loading branch information
armandomontanez authored and CQ Bot Account committed Dec 30, 2024
1 parent bc6e04c commit e851b2c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pw_hdlc/java/main/dev/pigweed/pw_hdlc/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations under
# the License.

load("@rules_android//android:library.bzl", "android_library")
load("@rules_android//android:rules.bzl", "android_library")
load("@rules_java//java:defs.bzl", "java_library")
load("@rules_jvm_external//:defs.bzl", "artifact")

Expand Down
2 changes: 1 addition & 1 deletion pw_log/java/android_main/dev/pigweed/pw_log/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations under
# the License.

load("@rules_android//android:library.bzl", "android_library")
load("@rules_android//android:rules.bzl", "android_library")

android_library(
name = "pw_log",
Expand Down
2 changes: 1 addition & 1 deletion pw_rpc/java/main/dev/pigweed/pw_rpc/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Generic client for pw_rpc, Pigweed's RPC system.

load("@rules_android//android:library.bzl", "android_library")
load("@rules_android//android:rules.bzl", "android_library")
load("@rules_java//java:defs.bzl", "java_library")
load("@rules_jvm_external//:defs.bzl", "artifact")

Expand Down
2 changes: 1 addition & 1 deletion pw_transfer/java/main/dev/pigweed/pw_transfer/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Client for the pw_transfer RPC service, which is used to send and receive data
# over pw_rpc.

load("@rules_android//android:library.bzl", "android_library")
load("@rules_android//android:rules.bzl", "android_library")
load("@rules_java//java:defs.bzl", "java_library")
load("@rules_jvm_external//:defs.bzl", "artifact")

Expand Down

0 comments on commit e851b2c

Please sign in to comment.