1# Copyright (c) 2024 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("//build/ohos.gni") 15import("//test/xts/tools/build/suite.gni") 16 17ohos_js_hap_suite("storageenvironment_ndk_test") { 18 hap_profile = "entry/src/main/module.json" 19 js_build_mode = "debug" 20 deps = [ 21 ":storageenvironment_ndk_assets", 22 ":storageenvironment_ndk_resources", 23 ] 24 ets2abc = true 25 certificate_profile = "signature/openharmony_sx.p7b" 26 hap_name = "ActsStorageEnvironmentNdkTest" 27 subsystem_name = "filemanagement" 28 part_name = "storage_service" 29 shared_libraries = [ 30 "./entry/src/main/cpp:environment", 31 "./entry/src/main/cpp:fileio", 32 ":libcppsharedso", 33 ] 34} 35 36ohos_prebuilt_shared_library("libcppsharedso") { 37 source = rebase_path(libcxx_ndk_shared_file) 38 subsystem_name = "storage" 39 part_name = "storage_service" 40} 41 42ohos_app_scope("storageenvironment_ndk_app_profile") { 43 app_profile = "AppScope/app.json" 44 sources = [ "AppScope/resources" ] 45} 46 47ohos_js_assets("storageenvironment_ndk_assets") { 48 source_dir = "entry/src/main/ets" 49} 50 51ohos_resources("storageenvironment_ndk_resources") { 52 sources = [ "entry/src/main/resources" ] 53 deps = [ ":storageenvironment_ndk_app_profile" ] 54 hap_profile = "entry/src/main/module.json" 55} 56