2023-01-10 06:51:25 +00:00
|
|
|
# Copyright (c) 2023 Huawei Device Co., Ltd.
|
2022-11-16 07:08:08 +00:00
|
|
|
# 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
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import("//build/ohos.gni")
|
2023-12-05 14:03:27 +00:00
|
|
|
import("../windowmanager_aafwk.gni")
|
2022-11-16 07:08:08 +00:00
|
|
|
|
2023-02-16 14:35:34 +00:00
|
|
|
group("window_scene") {
|
2023-01-10 06:51:25 +00:00
|
|
|
public_deps = [
|
2023-06-29 02:06:33 +00:00
|
|
|
"intention_event:libintention_event",
|
2023-02-16 14:35:34 +00:00
|
|
|
"session:scene_session",
|
2023-05-05 11:14:31 +00:00
|
|
|
"session:screen_session",
|
2023-02-16 14:35:34 +00:00
|
|
|
"session_manager:scene_session_manager",
|
2023-05-05 11:14:31 +00:00
|
|
|
"session_manager:screen_session_manager",
|
2023-05-07 03:28:40 +00:00
|
|
|
"session_manager:session_manager",
|
2022-11-26 09:44:04 +00:00
|
|
|
]
|
2023-12-05 14:03:27 +00:00
|
|
|
if (scene_board_enabled) {
|
|
|
|
public_deps += [ "session_manager_service:session_manager_service" ]
|
|
|
|
}
|
2022-11-26 09:44:04 +00:00
|
|
|
}
|
2023-03-02 08:51:27 +00:00
|
|
|
|
|
|
|
group("test") {
|
|
|
|
testonly = true
|
|
|
|
deps = [ "test/unittest:unittest" ]
|
|
|
|
}
|