BUILD.gn 3.7 KB
Newer Older
H
harry-john 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Copyright (C) 2021 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("//test/xts/tools/build/suite.gni")

##################################################################################
H
harry-john 已提交
17 18 19 20 21 22
config("module_private_config") {
  visibility = [ ":*" ]
  include_dirs = [
    "//utils/native/base/include",
    "//base/security/permission/interfaces/innerkits/permission_standard/permissionsdk/main/cpp/include/permission",
  ]
H
harry-john 已提交
23 24 25
}

##################################################################################
J
jiyong 已提交
26
ohos_moduletest_suite("ActsPermissionKitCPPTest") {
H
harry-john 已提交
27 28 29
  subsystem_name = "hits"
  part_name = "permission_standard"
  module_out_path = subsystem_name + "/" + part_name
H
harry-john 已提交
30

H
harry-john 已提交
31
  configs = [ ":module_private_config" ]
H
harry-john 已提交
32

H
harry-john 已提交
33
  cflags_cc = [ "-DHILOG_ENABLE" ]
H
harry-john 已提交
34

H
harry-john 已提交
35 36 37 38 39 40
  sources = [ "src/PermissionKitFunctionCPPTest.cpp" ]
  deps = [
    "//base/security/permission/frameworks/permission_standard/permissioninfrastructure:permission_standard_infrastructure_cxx",
    "//base/security/permission/interfaces/innerkits/permission_standard/permissionsdk:libpermissionsdk_standard",
    "//utils/native/base:utils",
  ]
H
harry-john 已提交
41
}
H
harry-john 已提交
42

H
harry-john 已提交
43
##################################################################################
H
harry-john 已提交
44 45 46 47
ohos_moduletest_suite("PermissionKitPerformanceCPPTest") {
  subsystem_name = "hits"
  part_name = "permission_standard"
  module_out_path = subsystem_name + "/" + part_name
H
harry-john 已提交
48

H
harry-john 已提交
49
  configs = [ ":module_private_config" ]
H
harry-john 已提交
50

H
harry-john 已提交
51
  cflags_cc = [ "-DHILOG_ENABLE" ]
H
harry-john 已提交
52

H
harry-john 已提交
53 54 55 56 57 58
  sources = [ "src/PermissionKitPerformanceCPPTest.cpp" ]
  deps = [
    "//base/security/permission/frameworks/permission_standard/permissioninfrastructure:permission_standard_infrastructure_cxx",
    "//base/security/permission/interfaces/innerkits/permission_standard/permissionsdk:libpermissionsdk_standard",
    "//utils/native/base:utils",
  ]
H
harry-john 已提交
59
}
H
harry-john 已提交
60

H
harry-john 已提交
61
##################################################################################
H
harry-john 已提交
62 63 64 65
ohos_moduletest_suite("PermissionKitReliabilityCPPTest") {
  subsystem_name = "hits"
  part_name = "permission_standard"
  module_out_path = subsystem_name + "/" + part_name
H
harry-john 已提交
66

H
harry-john 已提交
67
  configs = [ ":module_private_config" ]
H
harry-john 已提交
68

H
harry-john 已提交
69
  cflags_cc = [ "-DHILOG_ENABLE" ]
H
harry-john 已提交
70

H
harry-john 已提交
71 72 73 74 75 76 77
  sources = [ "src/PermissionKitReliabilityCPPTest.cpp" ]
  deps = [
    "//base/security/permission/frameworks/permission_standard/permissioninfrastructure:permission_standard_infrastructure_cxx",
    "//base/security/permission/interfaces/innerkits/permission_standard/permissionsdk:libpermissionsdk_standard",
    "//utils/native/base:utils",
  ]
}
H
harry-john 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90

##################################################################################
ohos_moduletest_suite("PermissionKitCPPTest") {
  subsystem_name = "hits"
  part_name = "permission_standard"
  module_out_path = subsystem_name + "/" + part_name

  configs = [ ":module_private_config" ]

  cflags_cc = [ "-DHILOG_ENABLE" ]

  sources = [
    "src/PermissionKitFunctionCPPTest.cpp",
J
jiyong 已提交
91

92 93
    # "src/PermissionKitPerformanceCPPTest.cpp",
    # "src/PermissionKitReliabilityCPPTest.cpp",
H
harry-john 已提交
94 95 96 97 98 99 100
  ]
  deps = [
    "//base/security/permission/frameworks/permission_standard/permissioninfrastructure:permission_standard_infrastructure_cxx",
    "//base/security/permission/interfaces/innerkits/permission_standard/permissionsdk:libpermissionsdk_standard",
    "//utils/native/base:utils",
  ]
}