BUILD.gn 1.4 KB
Newer Older
Y
yangbo 已提交
1
# Copyright (c) 2023 Huawei Device Co., Ltd.
Y
yangbo 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# 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")

ohos_js_hap_suite("photoAccess_system_js_hap") {
  hap_profile = "entry/src/main/module.json"
  js_build_mode = "debug"
  deps = [
Y
yangbo 已提交
20 21
    ":photoAccessSystem_js_assets",
    ":photoAccessSystem_resources",
Y
yangbo 已提交
22 23 24 25 26 27 28 29
  ]
  ets2abc = true
  certificate_profile = "signature/openharmony_sx.p7b"
  hap_name = "ActsPhotoAccessSysTest"
  part_name = "media_library"
  subsystem_name = "multimedia"
}

Y
yangbo 已提交
30
ohos_app_scope("photoAccessSystem_app_profile") {
Y
yangbo 已提交
31 32 33 34
  app_profile = "AppScope/app.json"
  sources = [ "AppScope/resources" ]
}

Y
yangbo 已提交
35
ohos_js_assets("photoAccessSystem_js_assets") {
Y
yangbo 已提交
36 37 38
  source_dir = "entry/src/main/ets"
}

Y
yangbo 已提交
39
ohos_resources("photoAccessSystem_resources") {
Y
yangbo 已提交
40
  sources = [ "entry/src/main/resources" ]
Y
yangbo 已提交
41
  deps = [ ":photoAccessSystem_app_profile" ]
Y
yangbo 已提交
42 43
  hap_profile = "entry/src/main/module.json"
}