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

Commit 2d309555 authored by Jihoon Kang's avatar Jihoon Kang
Browse files

Define prebuilt_res modules for font.png installation

These modules are added to the soong generated recovery partition as
dependencies.

Test: mount soong generated recovery partition and diff with make recovery partition
Bug: 381888358
Change-Id: I0e574103e72409bfe728b5df6683ac74c4d6e7ff
parent fd6c1299
Loading
Loading
Loading
Loading

fonts/Android.bp

0 → 100644
+35 −0
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-fonts-12",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    src: "12x22.png",
    no_full_install: true,
    filename: "font.png",
}

prebuilt_res {
    name: "recovery-fonts-18",
    recovery: true,
    install_in_root: true,
    relative_install_path: "images",
    src: "18x32.png",
    no_full_install: true,
    filename: "font.png",
}