BUILD.gn 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
# 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
X
XUXIAOBO 已提交
12
# limitations under the License.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

import("//test/xts/tools/build/suite.gni")
module_output_path = "hit/ActsMediaCppStandardTest"

###############################################################################
config("media_cpp_config") {
  visibility = [ ":*" ]
  include_dirs = [
    "include",
    "//multimedia/media_standard/frameworks/innerkitsimpl/native/player/include",
  ]
}

ohos_moduletest_suite("ActsMediaCppStandardTest") {
  module_out_path = module_output_path
  sources = [
    "player/src/TestParamsConfig.cpp",
X
XUXIAOBO 已提交
30
    "player/src/TestPlayer.cpp",
B
bird_j 已提交
31
    "player/src/api/ActsPlayerAPITest.cpp",
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
    "player/src/function/ActsPlayerFuncAsyncTest.cpp",
    "player/src/function/ActsPlayerFuncTest.cpp",
    "player/src/function/ActsPlayerStateAsyncTest.cpp",
    "player/src/function/ActsPlayerStateTest.cpp",
  ]
  include_dirs = [
    "include",
    "player/include",
    "recorder/include",
    "//base/startup/syspara_lite/interfaces/innerkits/native/syspara/include",
    "//foundation/graphic/standard/interfaces/innerkits/wmclient",
  ]
  cflags = [ "-Wall" ]
  cflags_cc = cflags
  deps = [
    "//base/hiviewdfx/hilog/interfaces/native/innerkits:libhilog",
    "//base/startup/syspara_lite/interfaces/innerkits/native/syspara:syspara",
    "//foundation/graphic/standard:libwmclient",
    "//third_party/googletest:gtest_main",
  ]
  external_deps = [
    "ipc:ipc_core",
    "multimedia_media_standard:media_client",
  ]
  configs = [ ":media_cpp_config" ]
}