1# Copyright (c) 2022-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 14import("//foundation/arkui/ace_engine/test/unittest/ace_unittest.gni") 15 16ace_unittest("drag_drop_manager_test_ng") { 17 type = "new" 18 module_output = "manager" 19 sources = [ "drag_drop_manager_test_ng.cpp" ] 20} 21 22ace_unittest("drag_drop_proxy_test_ng") { 23 type = "new" 24 module_output = "manager" 25 sources = [ "drag_drop_proxy_test_ng.cpp" ] 26} 27 28ace_unittest("full_screen_manager_test_ng") { 29 type = "new" 30 module_output = "manager" 31 sources = [ "full_screen_manager_test_ng.cpp" ] 32} 33 34ace_unittest("post_event_manager_test_ng") { 35 type = "new" 36 module_output = "manager" 37 sources = [ "post_event_manager_test_ng.cpp" ] 38} 39 40ace_unittest("select_overlay_manager_test_ng") { 41 type = "new" 42 module_output = "manager" 43 sources = [ "select_overlay_manager_test_ng.cpp" ] 44} 45 46ace_unittest("select_overlay_proxy_test_ng") { 47 type = "new" 48 module_output = "manager" 49 sources = [ "select_overlay_proxy_test_ng.cpp" ] 50} 51 52ace_unittest("shared_overlay_manager_test_ng") { 53 type = "new" 54 module_output = "manager" 55 sources = [ "shared_overlay_manager_test_ng.cpp" ] 56} 57 58ace_unittest("display_sync_manager_test_ng") { 59 type = "new" 60 module_output = "manager" 61 sources = [ "display_sync_manager_test.cpp" ] 62} 63 64group("core_manager_unittest") { 65 testonly = true 66 deps = [ 67 ":display_sync_manager_test_ng", 68 ":drag_drop_manager_test_ng", 69 ":drag_drop_proxy_test_ng", 70 ":full_screen_manager_test_ng", 71 ":post_event_manager_test_ng", 72 ":select_overlay_manager_test_ng", 73 ":select_overlay_proxy_test_ng", 74 ":shared_overlay_manager_test_ng", 75 ] 76} 77