• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2022 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("view_stack_processor_test_ng") {
17  type = "new"
18  module_output = "basic"
19  sources = [ "view_stack_processor_test_ng.cpp" ]
20}
21
22ace_unittest("distributed_ui_test_ng") {
23  type = "new"
24  module_output = "basic"
25  sources = [ "distributed_ui_test_ng.cpp" ]
26}
27
28ace_unittest("frame_node_test_ng") {
29  type = "new"
30  module_output = "basic"
31  sources = [ "frame_node_test_ng.cpp" ]
32}
33
34ace_unittest("geometry_node_test_ng") {
35  type = "new"
36  module_output = "basic"
37  sources = [ "geometry_node_test_ng.cpp" ]
38}
39
40ace_unittest("inspector_test_ng") {
41  type = "new"
42  module_output = "basic"
43  sources = [ "inspector_test_ng.cpp" ]
44}
45
46ace_unittest("ui_node_test_ng") {
47  type = "new"
48  module_output = "basic"
49  sources = [ "ui_node_test_ng.cpp" ]
50}
51
52ace_unittest("view_abstract_test_ng") {
53  type = "new"
54  module_output = "basic"
55  sources = [ "view_abstract_test_ng.cpp" ]
56}
57
58ace_unittest("view_full_update_model_ng_test") {
59  type = "new"
60  module_output = "basic"
61  sources = [ "view_full_update_model_ng_test.cpp" ]
62}
63
64ace_unittest("view_partial_update_model_test_ng") {
65  type = "new"
66  module_output = "basic"
67  sources = [ "view_partial_update_model_test_ng.cpp" ]
68}
69
70ace_unittest("observer_test_ng") {
71  type = "new"
72  module_output = "basic"
73  sources = [ "observer_test_ng.cpp" ]
74}
75
76group("core_base_unittest") {
77  testonly = true
78  deps = [
79    ":distributed_ui_test_ng",
80    ":frame_node_test_ng",
81    ":geometry_node_test_ng",
82    ":inspector_test_ng",
83    ":observer_test_ng",
84    ":ui_node_test_ng",
85    ":view_abstract_test_ng",
86    ":view_full_update_model_ng_test",
87    ":view_partial_update_model_test_ng",
88    ":view_stack_processor_test_ng",
89  ]
90}
91