mirror of
https://gitee.com/openharmony/arkui_ace_engine
synced 2025-01-26 20:36:19 +00:00
3605241164
Signed-off-by: liyujie <liyujie43@huawei.com> Change-Id: I748a092363ba4fcb61c8ca8449910355542e60d3
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
# Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
# 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/test.gni")
|
|
import("//foundation/arkui/ace_engine/test/unittest/ace_unittest.gni")
|
|
|
|
ohos_unittest("base_utils_test") {
|
|
module_out_path = "$basic_test_output_path/utils"
|
|
|
|
sources = [
|
|
"$ace_root/frameworks/base/json/json_util.cpp",
|
|
"$ace_root/frameworks/base/utils/base_id.cpp",
|
|
"$ace_root/frameworks/base/utils/date_util.cpp",
|
|
"$ace_root/frameworks/base/utils/resource_configuration.cpp",
|
|
"$ace_root/frameworks/base/utils/string_expression.cpp",
|
|
"$ace_root/frameworks/base/utils/string_utils.cpp",
|
|
"$ace_root/frameworks/base/utils/time_util.cpp",
|
|
"base_utils_test.cpp",
|
|
]
|
|
|
|
deps = [
|
|
"$ace_root/test/unittest:ace_unittest_log",
|
|
"$cjson_root:cjson_static",
|
|
"//third_party/bounds_checking_function:libsec_shared",
|
|
"//third_party/googletest:gmock_main",
|
|
]
|
|
configs = [ "$ace_root/test/unittest:ace_unittest_config" ]
|
|
}
|