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

Commit 513b86e5 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.

Test: local non-AB OTA generation
Bug: 296485685

Merged-In: I0736ecef343834c746464666a454a8bfcd4a20ea

Change-Id: I0736ecef343834c746464666a454a8bfcd4a20ea
parent 4fd3b110
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -483,8 +483,13 @@ python_binary_host {
    defaults: ["releasetools_binary_defaults"],
    defaults: ["releasetools_binary_defaults"],
    srcs: [
    srcs: [
        "make_recovery_patch.py",
        "make_recovery_patch.py",
        "non_ab_ota.py",
        "edify_generator.py",
        "check_target_files_vintf.py",
    ],
    ],
    libs: [
    libs: [
        "ota_utils_lib",
        "ota_metadata_proto",
        "releasetools_common",
        "releasetools_common",
    ],
    ],
}
}
+0 −1
Original line number Original line Diff line number Diff line
@@ -31,7 +31,6 @@ import sys
import zipfile
import zipfile


import common
import common
from apex_manifest import ParseApexManifest


logger = logging.getLogger(__name__)
logger = logging.getLogger(__name__)


Loading