BUILD.gn 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# 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("//test/xts/tools/build/suite.gni")

X
xialiangwei 已提交
16
ohos_js_hap_suite("StartAbilityByUIContentSession") {
17 18 19
  hap_profile = "entry/src/main/module.json"
  js_build_mode = "debug"
  deps = [
X
xialiangwei 已提交
20 21
    ":startabilitybyuicontentsession_js_assets",
    ":startabilitybyuicontentsession_resources",
22 23 24
  ]
  ets2abc = true
  certificate_profile = "signature/openharmony_sx.p7b"
X
xialiangwei 已提交
25
  hap_name = "StartAbilityByUIContentSession"
26 27 28 29 30

  subsystem_name = "ability"
  part_name = "ability_runtime"
}

X
xialiangwei 已提交
31
ohos_app_scope("startabilitybyuicontentsession_app_profile") {
32 33 34 35
  app_profile = "AppScope/app.json"
  sources = [ "AppScope/resources" ]
}

X
xialiangwei 已提交
36
ohos_js_assets("startabilitybyuicontentsession_js_assets") {
37 38 39
  source_dir = "entry/src/main/ets"
}

X
xialiangwei 已提交
40
ohos_resources("startabilitybyuicontentsession_resources") {
41
  sources = [ "entry/src/main/resources" ]
X
xialiangwei 已提交
42
  deps = [ ":startabilitybyuicontentsession_app_profile" ]
43 44
  hap_profile = "entry/src/main/module.json"
}