1# Copyright (C) 2021 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 16ohos_prebuilt_etc("media_service.cfg") { 17 source = "media_service.cfg" 18 relative_install_dir = "init" 19 part_name = "player_framework" 20 subsystem_name = "multimedia" 21} 22 23ohos_prebuilt_etc("screen_capture_capsule_image") { 24 source = "image/capsule.svg" 25 subsystem_name = "multimedia" 26 relative_install_dir = "screencapture" 27 part_name = "player_framework" 28} 29 30ohos_prebuilt_etc("screen_capture_capsule_stop_image") { 31 source = "image/capsule_stop.svg" 32 subsystem_name = "multimedia" 33 relative_install_dir = "screencapture" 34 part_name = "player_framework" 35} 36 37ohos_prebuilt_etc("screen_capture_mic_image") { 38 source = "image/mic.svg" 39 subsystem_name = "multimedia" 40 relative_install_dir = "screencapture" 41 part_name = "player_framework" 42} 43 44ohos_prebuilt_etc("screen_capture_mic_off_image") { 45 source = "image/mic_off.svg" 46 subsystem_name = "multimedia" 47 relative_install_dir = "screencapture" 48 part_name = "player_framework" 49} 50 51ohos_prebuilt_etc("screen_capture_notification_image") { 52 source = "image/notification.png" 53 subsystem_name = "multimedia" 54 relative_install_dir = "screencapture" 55 part_name = "player_framework" 56} 57 58ohos_prebuilt_etc("screen_capture_stop_dark_image") { 59 source = "image/stop_dark.png" 60 subsystem_name = "multimedia" 61 relative_install_dir = "screencapture" 62 part_name = "player_framework" 63} 64 65ohos_prebuilt_etc("screen_capture_stop_image") { 66 source = "image/stop.png" 67 subsystem_name = "multimedia" 68 relative_install_dir = "screencapture" 69 part_name = "player_framework" 70} 71 72ohos_prebuilt_etc("screencapture_config") { 73 source = "screencapture/screencapture_config.para" 74 subsystem_name = "multimedia" 75 part_name = "player_framework" 76 module_install_dir = "etc/param" 77} 78 79ohos_prebuilt_etc("screencapture_config_dac") { 80 source = "screencapture/screencapture_config.para.dac" 81 subsystem_name = "multimedia" 82 part_name = "player_framework" 83 module_install_dir = "etc/param" 84} 85