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

Commit 994218ba authored by Jihoon Kang's avatar Jihoon Kang Committed by Gerrit Code Review
Browse files

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

parents 3c245685 720f9265
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