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

Commit 25c664b9 authored by Jihoon Kang's avatar Jihoon Kang Committed by Automerger Merge Worker
Browse files

Merge "Move recovery resources modules into an upper directory Android.bp...

Merge "Move recovery resources modules into an upper directory Android.bp file" into main am: 994218ba am: 9e0e6f3e

Original change: https://android-review.googlesource.com/c/platform/bootable/recovery/+/3425299



Change-Id: Ib3653b076b62db7519b0734144f34bc4853ef606
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 790536e6 9e0e6f3e
Loading
Loading
Loading
Loading
+55 −0
Original line number Diff line number Diff line
@@ -310,3 +310,58 @@ cc_library_shared {
        default: ["librecovery_ui_default"],
    }),
}

prebuilt_res {
    name: "recovery-resources-common-mdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "res-mdpi/images/*.png",
    ],
    no_full_install: true,
}

prebuilt_res {
    name: "recovery-resources-common-hdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "res-hdpi/images/*.png",
    ],
    no_full_install: true,
}

prebuilt_res {
    name: "recovery-resources-common-xhdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "res-xhdpi/images/*.png",
    ],
    no_full_install: true,
}

prebuilt_res {
    name: "recovery-resources-common-xxhdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "res-xxhdpi/images/*.png",
    ],
    no_full_install: true,
}

prebuilt_res {
    name: "recovery-resources-common-xxxhdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "res-xxxhdpi/images/*.png",
    ],
    no_full_install: true,
}

res-hdpi/Android.bp

deleted100644 → 0
+0 −26
Original line number Diff line number Diff line
//
// Copyright (C) 2024 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

prebuilt_res {
    name: "recovery-resources-common-hdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "images/*.png",
    ],
    no_full_install: true,
}

res-mdpi/Android.bp

deleted100644 → 0
+0 −26
Original line number Diff line number Diff line
//
// Copyright (C) 2024 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

prebuilt_res {
    name: "recovery-resources-common-mdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "images/*.png",
    ],
    no_full_install: true,
}

res-xhdpi/Android.bp

deleted100644 → 0
+0 −26
Original line number Diff line number Diff line
//
// Copyright (C) 2024 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

prebuilt_res {
    name: "recovery-resources-common-xhdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "images/*.png",
    ],
    no_full_install: true,
}

res-xxhdpi/Android.bp

deleted100644 → 0
+0 −26
Original line number Diff line number Diff line
//
// Copyright (C) 2024 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

prebuilt_res {
    name: "recovery-resources-common-xxhdpi",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    srcs: [
        "images/*.png",
    ],
    no_full_install: true,
}
Loading