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("appSchema_json") { 17 source = "app.json" 18 install_enable = false 19} 20 21ohos_prebuilt_etc("commonEventSchema_json") { 22 source = "commonEvents.json" 23 install_enable = false 24} 25 26ohos_prebuilt_etc("customUtdSchema_json") { 27 source = "customUtds.json" 28 install_enable = false 29} 30 31ohos_prebuilt_etc("distroFilterSchema_json") { 32 source = "distroFilter.json" 33 install_enable = false 34} 35 36ohos_prebuilt_etc("formsSchema_json") { 37 source = "forms.json" 38 install_enable = false 39} 40 41ohos_prebuilt_etc("insightIntentSchema_json") { 42 source = "insightIntent.json" 43 install_enable = false 44} 45 46ohos_prebuilt_etc("moduleSchema_json") { 47 source = "module.json" 48 install_enable = false 49} 50 51ohos_prebuilt_etc("pageSchema_json") { 52 source = "pages.json" 53 install_enable = false 54} 55 56ohos_prebuilt_etc("shortcutsSchema_json") { 57 source = "shortcuts.json" 58 install_enable = false 59} 60 61ohos_prebuilt_etc("routerMapSchema_json") { 62 source = "routerMap.json" 63 install_enable = false 64} 65 66ohos_prebuilt_etc("appStartupSchema_json") { 67 source = "appStartup.json" 68 install_enable = false 69} 70 71ohos_prebuilt_etc("menuSchema_json") { 72 source = "menu.json" 73 install_enable = false 74} 75