• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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("accessibility_property_testtwo_ng") {
29  type = "new"
30  module_output = "property"
31  sources = [ "accessibility_property_testtwo_ng.cpp" ]
32}
33
34ace_unittest("accessibility_property_test_three_ng") {
35  type = "new"
36  module_output = "property"
37  sources = [ "accessibility_property_test_three_ng.cpp" ]
38}
39
40ace_unittest("border_property_test_ng") {
41  type = "new"
42  module_output = "property"
43  sources = [ "border_property_test_ng.cpp" ]
44}
45
46ace_unittest("calc_length_test_ng") {
47  type = "new"
48  module_output = "property"
49  sources = [ "calc_length_test_ng.cpp" ]
50}
51
52ace_unittest("gradient_property_test_ng") {
53  type = "new"
54  module_output = "property"
55  sources = [ "gradient_property_test_ng.cpp" ]
56}
57
58ace_unittest("measure_utils_test_ng") {
59  type = "new"
60  module_output = "property"
61  sources = [ "measure_utils_test_ng.cpp" ]
62}
63
64ace_unittest("property_test_ng") {
65  type = "new"
66  module_output = "property"
67  sources = [ "property_test_ng.cpp" ]
68}
69
70ace_unittest("layout_constraint_test_ng") {
71  type = "new"
72  module_output = "property"
73  sources = [ "layout_constraint_test_ng.cpp" ]
74}
75
76ace_unittest("templates_parser_test_ng") {
77  type = "new"
78  module_output = "property"
79  sources = [ "templates_parser_test_ng.cpp" ]
80}
81
82group("core_property_unittest") {
83  testonly = true
84  deps = [
85    ":accessibility_property_test_ng",
86    ":accessibility_property_test_three_ng",
87    ":accessibility_property_testtwo_ng",
88    ":border_property_test_ng",
89    ":calc_length_test_ng",
90    ":gradient_property_test_ng",
91    ":grid_property_test_ng",
92    ":layout_constraint_test_ng",
93    ":measure_utils_test_ng",
94    ":property_test_ng",
95    ":templates_parser_test_ng",
96  ]
97}
98