Skip to content

Commit 05989d0

Browse files
A Googlercopybara-github
authored andcommitted
Automated Code Change
PiperOrigin-RevId: 658259241 Change-Id: Ifb8979c9c63ed47421ddbc71e03fb252a8257246
1 parent 126fc66 commit 05989d0

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

launcher/BUILD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ bzl_library(
3232
":primitives",
3333
":utilities",
3434
"//provider",
35+
"//tools/build_defs/android:rules_bzl",
36+
"//tools/build_defs/android/public_api:android_instrumentation_info_bzl",
3537
],
3638
)
3739

@@ -49,6 +51,7 @@ bzl_library(
4951
srcs = ["environment.bzl"],
5052
deps = [
5153
":primitives",
54+
"//tools/build_defs/android/public_api:android_sdk_info_bzl",
5255
],
5356
)
5457

@@ -82,9 +85,11 @@ bzl_library(
8285
":environment",
8386
":extension",
8487
":features",
88+
":primitives",
8589
":test_fixture",
8690
":utilities",
8791
"//provider",
92+
"//tools/build_defs/android/public_api:android_instrumentation_info_bzl",
8893
"@rules_android//rules:rules.bzl",
8994
],
9095
)

launcher/artifact.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
1514
"""Generates Artifact messages to feed to other rules."""
1615

1716
load("//tools/build_defs/android:rules.bzl", "AndroidAppsInfo")
17+
load("//tools/build_defs/android/public_api:android_instrumentation_info.bzl", "AndroidInstrumentationInfo")
1818
load(":mime_types.bzl", "get_mime_type")
1919
load(":primitives.bzl", "absolute_path_struct", "enum", "path_proto")
2020
load(":utilities.bzl", "any_textproto", "signed_apk")

launcher/environment.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
1514
"""Configures the UTP test environment."""
1615

16+
load("//tools/build_defs/android/public_api:android_sdk_info.bzl", "AndroidSdkInfo")
1717
load(
1818
":primitives.bzl",
1919
"absolute_path_struct",

launcher/launcher.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
1514
"""A UTP launcher that generates the RunnerConfig in Starlark."""
1615

1716
# There appears to be no way in Starlark for a non-test step to have access to the environment

0 commit comments

Comments
 (0)