# 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("../../../../../os_account.gni") module_output_path = "os_account/frameworks/os_account" config("os_account_frameworks_config_benchmarktest") { visibility = [ ":*" ] include_dirs = [ "${innerkits_path}/include" ] cflags = [] if (os_account_enable_multiple_os_accounts) { cflags += [ "-DENABLE_MULTIPLE_OS_ACCOUNTS" ] } if (target_cpu == "arm") { cflags += [ "-DBINDER_IPC_32BIT" ] } defines = [ "ACCOUNT_LOG_TAG = \"OsAccountBenchmarkTestFwk\"", "LOG_DOMAIN = 0xD001B00", ] } ohos_benchmarktest("os_account_manager_benchmark_test") { module_out_path = module_output_path sources = [ "os_account_manager_benchmark_test.cpp" ] configs = [ ":os_account_frameworks_config_benchmarktest" ] deps = [ "${common_path}:libaccount_common", "${os_account_innerkits_native_path}:os_account_innerkits", "//third_party/benchmark", "//third_party/googletest:gmock_main", "//third_party/googletest:gtest_main", ] external_deps = [ "c_utils:utils" ] } group("benchmarktest") { testonly = true deps = [ ":os_account_manager_benchmark_test" ] }