# 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("//build/ohos.gni") config("want_config") { visibility = [ ":*" ] include_dirs = [] cflags = [] if (target_cpu == "arm") { cflags += [ "-DBINDER_IPC_32BIT" ] } defines = [ "APP_LOG_TAG = \"Ability\"", "LOG_DOMAIN = 0xD002200", ] } config("want_public_config") { visibility = [ ":*" ] include_dirs = [ "//utils/native/base/include", "//foundation/aafwk/standard/interfaces/innerkits/want/include", "//foundation/aafwk/standard/interfaces/innerkits/base/include", "//foundation/appexecfwk/standard/common/log/include", "//foundation/appexecfwk/standard/interfaces/innerkits/appexecfwk_base/include", "//foundation/distributedschedule/dmsfwk/services/dtbschedmgr/include", "//foundation/aafwk/standard/interfaces/innerkits/want/include/ohos/aafwk/content", "//foundation/aafwk/standard/frameworks/kits/content/cpp/src", "//third_party/jsoncpp/include", ] } wantImpl = "//foundation/aafwk/standard/frameworks/kits/content/cpp/src/ohos/aafwk/content" ohos_shared_library("want") { sources = [ "${wantImpl}/extra_params.cpp", "${wantImpl}/operation.cpp", "${wantImpl}/operation_builder.cpp", "${wantImpl}/pac_map.cpp", "${wantImpl}/patterns_matcher.cpp", "${wantImpl}/skills.cpp", "${wantImpl}/want.cpp", "${wantImpl}/want_params.cpp", "${wantImpl}/want_params_wrapper.cpp", ] deps = [ "//foundation/aafwk/standard/interfaces/innerkits/base:base", "//foundation/appexecfwk/standard/common:libappexecfwk_common", "//foundation/appexecfwk/standard/interfaces/innerkits/appexecfwk_base:appexecfwk_base", "//foundation/distributedschedule/dmsfwk/interfaces/innerkits/uri:zuri", "//foundation/distributedschedule/safwk/interfaces/innerkits/safwk:system_ability_fwk", #"//foundation/distributeddatamgr/distributeddatamgr:build_module", "//foundation/distributedschedule/samgr/interfaces/innerkits/lsamgr:lsamgr", "//third_party/jsoncpp:jsoncpp", "//utils/native/base:utils", ] external_deps = [ "hiviewdfx_hilog_native:libhilog", "ipc:ipc_core", ] configs = [ ":want_config" ] public_configs = [ ":want_public_config" ] subsystem_name = "aafwk" part_name = "aafwk_standard" }