Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 666459841
Change-Id: I607d93ba10fe99715377522ff17f5f04e503d1c7
  • Loading branch information
ahumesky authored and copybara-github committed Aug 22, 2024
1 parent 7f54b1b commit 0432570
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions example/ait/rule.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

"""An example of instrumentation test implemented on utp_test"""

load("@rules_android//rules:providers.bzl", "ApkInfo")
load(
"@rules_utp//launcher:rules.bzl",
"android_instrumentation_driver",
Expand Down
7 changes: 5 additions & 2 deletions launcher/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ bzl_library(
":test_fixture",
":utilities",
"//provider",
"//tools/build_defs/android/public_api:android_instrumentation_info_bzl",
"//tools/build_defs/android/public_api:apk_info",
"@rules_android//rules:rules.bzl",
],
)
Expand Down Expand Up @@ -136,7 +136,10 @@ bzl_library(
bzl_library(
name = "utilities",
srcs = ["utilities.bzl"],
deps = ["@rules_android//rules:rules.bzl"],
deps = [
"//tools/build_defs/android/public_api:apk_info",
"@rules_android//rules:rules.bzl",
],
)

bzl_library(
Expand Down
1 change: 1 addition & 0 deletions launcher/launcher.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
load("//provider:provider.bzl", "utp_provider", "utp_provider_tools")
load("@rules_android//rules:rules.bzl", "AndroidAppsInfo", "StarlarkApkInfo", "instrumented_app_info_aspect")
load("@rules_android//rules:providers.bzl", "AndroidInstrumentationInfo")
load("//tools/build_defs/android/public_api:apk_info.bzl", "ApkInfo")
load(":artifact.bzl", "UTPArtifactInfo", "UTPArtifactsInfo", "apk_to_installable", "artifact_to_message", "data_to_dep", "file_to_dep")
load(":entry_point.bzl", "UTPEntryPointInfo", "launcher_classpath")
load(":environment.bzl", "EnvironmentInfo", "environment_to_message")
Expand Down
1 change: 1 addition & 0 deletions launcher/utilities.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"""Utility functions."""

load("@rules_android//rules:rules.bzl", "StarlarkApkInfo")
load("//tools/build_defs/android/public_api:apk_info.bzl", "ApkInfo")

visibility([
"//launcher/...",
Expand Down

0 comments on commit 0432570

Please sign in to comment.