# Copyright (c) 2023 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("./../../../../sensor.gni") ohos_unittest("SensorNativeTest") { module_out_path = "sensor/sensor/interfaces/kits" sources = [ "$SUBSYSTEM_DIR/test/unittest/interfaces/kits/sensor_native_test.cpp" ] include_dirs = [ "$SUBSYSTEM_DIR/utils/common/include", "$SUBSYSTEM_DIR/interfaces/kits/c", "$SUBSYSTEM_DIR/frameworks/native/include", ] deps = [ "$SUBSYSTEM_DIR/frameworks/native:ohsensor", "$SUBSYSTEM_DIR/utils/common:libsensor_utils", ] external_deps = [ "access_token:libaccesstoken_sdk", "access_token:libnativetoken_shared", "access_token:libtokensetproc_shared", "c_utils:utils", "googletest:gmock", "googletest:gtest_main", "hilog:libhilog", "ipc:ipc_single", ] } group("unittest") { testonly = true deps = [ ":SensorNativeTest" ] }