44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
load(":apex_diff_test.bzl", "apex_diff_test")
|
|
load(":apex_test.bzl", "apex_compression_test")
|
|
load(":apex_aab_test.bzl", "apex_aab_test")
|
|
|
|
apex_diff_test(
|
|
name = "com.android.tzdata",
|
|
apex1 = "//system/timezone/apex:com.android.tzdata.apex",
|
|
apex2 = "@make_injection//:target/product/generic/system/apex/com.android.tzdata.apex",
|
|
)
|
|
|
|
apex_diff_test(
|
|
name = "build.bazel.examples.apex.minimal",
|
|
apex1 = "//build/bazel/examples/apex/minimal:build.bazel.examples.apex.minimal.apex",
|
|
apex2 = "@make_injection//:target/product/generic/system/product/apex/build.bazel.examples.apex.minimal.apex",
|
|
)
|
|
|
|
apex_diff_test(
|
|
name = "com.android.adbd_uncompressed",
|
|
apex1 = "//packages/modules/adb/apex:com.android.adbd.apex",
|
|
apex2 = "@make_injection//:target/product/generic/system/apex/com.android.adbd.capex",
|
|
)
|
|
|
|
apex_diff_test(
|
|
name = "com.android.adbd_compressed",
|
|
apex1 = "//packages/modules/adb/apex:com.android.adbd.capex",
|
|
apex2 = "@make_injection//:target/product/generic/system/apex/com.android.adbd.capex",
|
|
)
|
|
|
|
apex_compression_test(
|
|
name = "build.bazel.examples.apex.minimal_apex",
|
|
apex = "//build/bazel/examples/apex/minimal:build.bazel.examples.apex.minimal.apex",
|
|
compressed = False,
|
|
)
|
|
|
|
apex_compression_test(
|
|
name = "build.bazel.examples.apex.minimal_capex",
|
|
apex = "//build/bazel/examples/apex/minimal:build.bazel.examples.apex.minimal_compressed.capex",
|
|
compressed = True,
|
|
)
|
|
|
|
apex_aab_test(
|
|
name = "build.bazel.examples.apex.minimal_mainline-module",
|
|
apex = "//build/bazel/examples/apex/minimal:build.bazel.examples.apex.minimal",
|
|
) |