Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f203ee52 authored by Kelvin Zhang's avatar Kelvin Zhang
Browse files

Remove non-AB unittests

non-AB is deprecated, remove unittets first. This CL also puts non-AB
libraries in a separate soong namepsace, which allows two copies of
non-AB code to co-exist temporarily during migration.

Test: th
Bug: 324360816

Merged-In: I3d82d9031446be355d8a1d077ab83283c7cc769c
Change-Id: Idd9386f4c8d32508734b1bfe9b9f76668aa710bc
parent 75014b82
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -35,7 +35,10 @@ package {
// See: http://go/android-license-faq
license {
    name: "bootable_recovery_license",
    visibility: [":__subpackages__"],
    visibility: [
        ":__subpackages__",
        "//bootable/deprecated-ota:__subpackages__",
    ],
    license_kinds: [
        "SPDX-license-identifier-Apache-2.0",
        "SPDX-license-identifier-MIT",
@@ -175,11 +178,9 @@ cc_binary {
    required: [
        "e2fsdroid.recovery",
        "init_recovery.rc",
        "librecovery_ui_ext",
        "minadbd",
        "mke2fs.conf.recovery",
        "mke2fs.recovery",
        "recovery_deps",
        "ueventd.rc.recovery",
    ],
}
+0 −2
Original line number Diff line number Diff line
@@ -84,5 +84,3 @@ endif

include $(BUILD_PHONY_PACKAGE)
include \
    $(LOCAL_PATH)/updater/Android.mk \
+6 −0
Original line number Diff line number Diff line
@@ -12,6 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.

soong_namespace {
    imports: [
        "bootable/recovery/edify",
    ],
}

package {
    default_applicable_licenses: ["bootable_recovery_applypatch_license"],
}
+2 −0
Original line number Diff line number Diff line
@@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

soong_namespace {}

package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
+1 −0
Original line number Diff line number Diff line
@@ -98,5 +98,6 @@ cc_library_static {
        "//bootable/recovery/install",
        "//bootable/recovery/minadbd",
        "//bootable/recovery/tests",
        "//bootable/deprecated-ota:__subpackages__",
    ],
}
Loading