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

Commit 8b481264 authored by Kelvin Zhang's avatar Kelvin Zhang
Browse files

Move more non-AB code to separate files

non-AB has different lifetime and development cycles from AB. To avoid
accidentally breaking each other when making changes, put non-AB code in
its own files.

Ignore-AOSP-First: Need to resolve a merge conflict first in main
Test: local non-AB OTA generation
Bug: 296485685
Change-Id: I0736ecef343834c746464666a454a8bfcd4a20ea
parent 1165de3a
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -483,8 +483,13 @@ python_binary_host {
    defaults: ["releasetools_binary_defaults"],
    srcs: [
        "make_recovery_patch.py",
        "non_ab_ota.py",
        "edify_generator.py",
        "check_target_files_vintf.py",
    ],
    libs: [
        "ota_utils_lib",
        "ota_metadata_proto",
        "releasetools_common",
    ],
}
+0 −1
Original line number Diff line number Diff line
@@ -31,7 +31,6 @@ import sys
import zipfile

import common
from apex_manifest import ParseApexManifest

logger = logging.getLogger(__name__)

Loading