• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2021 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/aafwk/standard/aafwk.gni")
15
16config("aafwk_module_test_config") {
17  defines = [
18    # "APP_LOG_TAG = \"AbilityMgrService\"",
19    # "LOG_DOMAIN = 0xD00111F",
20  ]
21
22  configs = [ "${services_path}/abilitymgr:abilityms_config" ]
23
24  include_dirs = [
25    "${services_path}/test/mock/include",
26    "//third_party/jsoncpp/include",
27  ]
28}
29
30group("moduletest") {
31  testonly = true
32
33  deps = [
34    "moduletest/ability_mgr_service_test:moduletest",
35    "moduletest/ability_record_test:moduletest",
36    "moduletest/ability_stack_test:moduletest",
37    "moduletest/dump_module_test:moduletest",
38    "moduletest/ipc_ability_connect_test:moduletest",
39    "moduletest/ipc_ability_mgr_test:moduletest",
40    "moduletest/ipc_ability_scheduler_test:moduletest",
41    "moduletest/module_test_dump_util:module_test_dump_util",
42    "moduletest/panding_want_manager_test:moduletest",
43    "//third_party/jsoncpp:jsoncpp",
44  ]
45}
46