1# Copyright (c) 2021-2023 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 14os_account_path = "//base/account/os_account" 15ability_runtime_path = "//foundation/ability/ability_runtime" 16ability_runtime_napi_path = "${ability_runtime_path}/frameworks/js/napi" 17bundle_framework_path = "//foundation/bundlemanager/bundle_framework" 18common_path = "${os_account_path}/frameworks/common" 19services_path = "${os_account_path}/services" 20tools_path = "${os_account_path}/tools" 21innerkits_path = "${os_account_path}/interfaces/innerkits/ohosaccount/native" 22innerkits_native_path = "${os_account_path}/frameworks/ohosaccount/native" 23innerkits_common = "${os_account_path}/interfaces/innerkits/common" 24 25app_account_core_path = "${os_account_path}/frameworks/appaccount/core" 26app_account_extension_path = 27 "${os_account_path}/frameworks/appaccount/extension" 28app_account_interfaces_native_path = 29 "${os_account_path}/interfaces/innerkits/appaccount/native" 30app_account_innerkits_native_path = 31 "${os_account_path}/frameworks/appaccount/native" 32app_account_services_path = "${os_account_path}/services/accountmgr" 33app_account_kits_path = "${os_account_path}/interfaces/kits/napi/appaccount" 34 35os_account_interfaces_native_path = 36 "${os_account_path}/interfaces/innerkits/osaccount/native" 37os_account_innerkits_native_path = 38 "${os_account_path}/frameworks/osaccount/native" 39os_account_core_path = "${os_account_path}/frameworks/osaccount/core" 40os_account_kits_path = "${os_account_path}/interfaces/kits/napi/osaccount" 41os_account_dfx_path = "${os_account_path}/dfx" 42 43account_iam_kits_path = "${os_account_path}/interfaces/kits/napi/account_iam" 44account_iam_interfaces_native_path = 45 "${os_account_path}/interfaces/innerkits/account_iam/native" 46account_iam_framework_path = "${os_account_path}/frameworks/account_iam" 47 48domain_account_napi_path = 49 "${os_account_path}/interfaces/kits/napi/domain_account" 50domain_account_interfaces_native_path = 51 "${os_account_path}/interfaces/innerkits/domain_account/native" 52domain_account_framework_path = "${os_account_path}/frameworks/domain_account" 53 54account_napi_common_path = "${os_account_path}/interfaces/kits/napi/common" 55 56account_coverage_config_path = "${os_account_path}/config" 57 58fuzz_output_path = "os_account/os_account" 59 60if (!defined(global_parts_info) || 61 defined(global_parts_info.useriam_user_auth_framework)) { 62 has_user_auth_part = true 63 has_user_idm_part = true 64} else { 65 has_user_auth_part = false 66 has_user_idm_part = false 67} 68 69if (!defined(global_parts_info) || 70 defined(global_parts_info.useriam_pin_auth)) { 71 has_pin_auth_part = true 72} else { 73 has_pin_auth_part = false 74} 75 76if (!defined(global_parts_info) || 77 defined(global_parts_info.notification_common_event_service)) { 78 has_ces_part = true 79} else { 80 has_ces_part = false 81} 82 83if (!defined(global_parts_info) || 84 defined(global_parts_info.hiviewdfx_hisysevent)) { 85 has_hiviewdfx_hisysevent_part = true 86} else { 87 has_hiviewdfx_hisysevent_part = false 88} 89 90if (!defined(global_parts_info) || 91 defined(global_parts_info.hiviewdfx_hitrace)) { 92 has_hiviewdfx_hitrace_part = true 93} else { 94 has_hiviewdfx_hitrace_part = false 95} 96 97if (!defined(global_parts_info) || 98 defined(global_parts_info.filemanagement_storage_service)) { 99 has_storage_service_part = true 100} else { 101 has_storage_service_part = false 102} 103 104if (!defined(global_parts_info) || 105 defined(global_parts_info.arkui_ace_engine)) { 106 has_ace_engine_part = true 107} else { 108 has_ace_engine_part = false 109} 110 111declare_args() { 112 os_account_multiple_active_accounts = false 113} 114 115declare_args() { 116 os_account_support_deactivate_main_os_account = false 117} 118 119declare_args() { 120 os_account_distributed_feature = true 121} 122 123declare_args() { 124 os_account_test_case_coverage_feature = false 125} 126 127declare_args() { 128 os_account_storage_feature = true 129} 130 131declare_args() { 132 os_account_file_encryption_el1_feature = true 133} 134 135declare_args() { 136 os_account_enable_multiple_os_accounts = true 137} 138 139declare_args() { 140 os_account_enable_default_admin_name = true 141} 142 143declare_args() { 144 os_account_enable_account_short_name = false 145} 146 147if (!defined(global_parts_info) || 148 defined(global_parts_info.hiviewdfx_hicollie)) { 149 hicollie_enable = true 150} else { 151 hicollie_enable = false 152} 153 154if (!defined(global_parts_info) || 155 defined(global_parts_info.security_security_guard)) { 156 security_guard_enabled = true 157} else { 158 security_guard_enabled = false 159} 160 161if (!defined(global_parts_info) || 162 defined(global_parts_info.distributeddatamgr_kv_store)) { 163 has_kv_store_part = true 164 has_app_account_part = true 165} else { 166 has_kv_store_part = false 167 has_app_account_part = false 168} 169 170if (!defined(global_parts_info) || defined(global_parts_info.security_asset)) { 171 has_asset_part = true 172} else { 173 has_asset_part = false 174} 175