1# Copyright (c) 2024 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("//base/update/updateservice/foundations/ability/define/define.gni")
15import("//base/update/updateservice/foundations/ability/log/log.gni")
16import(
17    "//base/update/updateservice/foundations/ability/sa_loader/sa_loader.gni")
18import(
19    "//base/update/updateservice/foundations/ability/sys_event/sys_event.gni")
20import("//base/update/updateservice/foundations/ability/utils/utils.gni")
21import("//base/update/updateservice/foundations/model/base_model.gni")
22
23foundations_external_deps = []
24foundations_external_deps += define_external_deps
25foundations_external_deps += update_log_external_deps
26foundations_external_deps += sa_loader_external_deps
27foundations_external_deps += sys_event_external_deps
28foundations_external_deps += utils_external_deps
29foundations_external_deps += base_model_external_deps
30
31foundations_deps = []
32foundations_deps += define_deps
33foundations_deps += update_log_deps
34foundations_deps += sa_loader_deps
35foundations_deps += sys_event_deps
36foundations_deps += utils_deps
37foundations_deps += base_model_deps
38
39foundations_include = []
40foundations_include += define_include
41foundations_include += update_log_include
42foundations_include += sa_loader_include
43foundations_include += sys_event_include
44foundations_include += utils_include
45foundations_include += base_model_include
46
47foundations_sources = []
48foundations_sources += define_src
49foundations_sources += update_log_src
50foundations_sources += sa_loader_src
51foundations_sources += sys_event_src
52foundations_sources += utils_src
53foundations_sources += base_model_src
54