1# Copyright (c) 2022 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14import("//build/ohos.gni") 15 16################################################################################ 17 18ohos_prebuilt_etc("printservice.rc") { 19 source = "printservice.cfg" 20 relative_install_dir = "init" 21 part_name = "print_fwk" 22 subsystem_name = "print" 23} 24 25ohos_prebuilt_etc("cups-files.conf") { 26 source = "cups-files.conf" 27 relative_install_dir = "cups" 28 part_name = "print_fwk" 29 subsystem_name = "print" 30} 31 32ohos_prebuilt_etc("cupsd.conf") { 33 source = "cupsd.conf" 34 relative_install_dir = "cups" 35 part_name = "print_fwk" 36 subsystem_name = "print" 37} 38 39ohos_prebuilt_etc("cups_service.cfg") { 40 source = "cups_service.cfg" 41 relative_install_dir = "init" 42 part_name = "print_fwk" 43 subsystem_name = "print" 44} 45 46ohos_prebuilt_etc("scanservice.rc") { 47 source = "scanservice.rc" 48 relative_install_dir = "init" 49 part_name = "print_fwk" 50 subsystem_name = "print" 51} 52 53ohos_prebuilt_etc("scanservice.cfg") { 54 source = "scanservice.cfg" 55 relative_install_dir = "init" 56 part_name = "print_fwk" 57 subsystem_name = "print" 58} 59