2022-05-18 06:13:53 +00:00
|
|
|
# Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
|
|
# 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
|
2022-05-28 07:41:42 +00:00
|
|
|
# limitations under the License.
|
2022-05-18 06:13:53 +00:00
|
|
|
|
2022-06-20 08:51:15 +00:00
|
|
|
ability_runtime_path = "//foundation/ability/ability_runtime"
|
2022-06-28 06:46:44 +00:00
|
|
|
ability_runtime_inner_api_path = "${ability_runtime_path}/interfaces/inner_api"
|
2022-06-23 07:19:11 +00:00
|
|
|
ability_runtime_kits_path = "${ability_runtime_path}/frameworks/kits"
|
|
|
|
ability_runtime_services_path = "${ability_runtime_path}/services"
|
2022-07-05 02:41:08 +00:00
|
|
|
ability_runtime_napi_path = "${ability_runtime_path}/frameworks/js/napi"
|
2022-06-22 09:01:48 +00:00
|
|
|
|
|
|
|
declare_args() {
|
2022-07-22 03:53:13 +00:00
|
|
|
efficiency_manager_enable = true
|
2022-06-22 09:01:48 +00:00
|
|
|
if (defined(global_parts_info) &&
|
2022-07-22 03:53:13 +00:00
|
|
|
!defined(global_parts_info.resourceschedule_efficiency_manager)) {
|
|
|
|
efficiency_manager_enable = false
|
2022-06-22 09:01:48 +00:00
|
|
|
}
|
2022-07-08 08:10:50 +00:00
|
|
|
}
|