-
-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable maven_install to use the Starlark version of aar_import to fac…
…ilitate migrating to the Starlark Android rules (#526) * Add starlark_aar_import and aar_import_bzl_label attributes to maven_install to enable switching to the Starlark version of aar_import from rules_android * Fix unmerged code * Rename starlark_aar_import to use_starlark_android_rules * Support jetifier + starlark aar_import. Validate the passed build label
- Loading branch information
Showing
6 changed files
with
102 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
load("@bazel_skylib//rules:build_test.bzl", "build_test") | ||
|
||
build_test( | ||
name = "starlark_aar_import_test", | ||
targets = [ | ||
"@starlark_aar_import_test//:com_android_support_appcompat_v7_28_0_0", | ||
], | ||
) | ||
|
||
build_test( | ||
name = "starlark_aar_import_with_jetify_test", | ||
targets = [ | ||
"@starlark_aar_import_with_jetify_test//:com_android_support_appcompat_v7_28_0_0", | ||
], | ||
) |