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("grid_property_test_ng") {
17  type = "new"
18  module_output = "property"
19  sources = [ "grid_property_test_ng.cpp" ]
20}
21
22ace_unittest("accessibility_property_test_ng") {
23  type = "new"
24  module_output = "property"
25  sources = [ "accessibility_property_test_ng.cpp" ]
26}
27
28ace_unittest("border_property_test_ng") {
29  type = "new"
30  module_output = "property"
31  sources = [ "border_property_test_ng.cpp" ]
32}
33
34ace_unittest("calc_length_test_ng") {
35  type = "new"
36  module_output = "property"
37  sources = [ "calc_length_test_ng.cpp" ]
38}
39
40ace_unittest("gradient_property_test_ng") {
41  type = "new"
42  module_output = "property"
43  sources = [ "gradient_property_test_ng.cpp" ]
44}
45
46ace_unittest("measure_utils_test_ng") {
47  type = "new"
48  module_output = "property"
49  sources = [ "measure_utils_test_ng.cpp" ]
50}
51
52ace_unittest("property_test_ng") {
53  type = "new"
54  module_output = "property"
55  sources = [ "property_test_ng.cpp" ]
56}
57
58ace_unittest("layout_constraint_test_ng") {
59  type = "new"
60  module_output = "property"
61  sources = [ "layout_constraint_test_ng.cpp" ]
62}
63
64ace_unittest("templates_parser_test_ng") {
65  type = "new"
66  module_output = "property"
67  sources = [ "templates_parser_test_ng.cpp" ]
68}
69
70group("core_property_unittest") {
71  testonly = true
72  deps = [
73    ":accessibility_property_test_ng",
74    ":border_property_test_ng",
75    ":calc_length_test_ng",
76    ":gradient_property_test_ng",
77    ":grid_property_test_ng",
78    ":layout_constraint_test_ng",
79    ":measure_utils_test_ng",
80    ":property_test_ng",
81    ":templates_parser_test_ng",
82  ]
83}
84