提交 6c13e9f9 编写于 作者: Z zhangshuqi

layout拆分

Signed-off-by: Nzhangshuqi <zhangshuqi7@huawei.com>
上级 8dad072b

要显示的变更太多。

To preserve performance only 1000 of 1000+ files are displayed.
# Default ignored files
/shelf/
/workspace.xml
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/ace_ets_layout_test.iml" filepath="$PROJECT_DIR$/.idea/ace_ets_layout_test.iml" />
</modules>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>
\ No newline at end of file
# Copyright (c) 2023 iSoftStone Information Technology (Group) Co.,Ltd.
# Copyright (c) 2023 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
......@@ -11,31 +11,26 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
group("ActsAceEtsLayoutTest") {
testonly = true
if (is_standard_system) {
deps = [
"ace_ets_layout_column_test:ActsAceEtsLayoutColumnTest",
ohos_js_hap_suite("ActsAceEtsLayoutTest") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":ace_ets_component_flex_js_assets",
":ace_ets_component_flex_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAceEtsLayoutTest"
}
ohos_app_scope("ace_ets_component_flex_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
#"ace_ets_layout_flex_test:ActsAceEtsLayoutFlexTest",
#"ace_ets_layout_grid_test:ActsAceEtsLayoutGridTest",
#"ace_ets_layout_gridCol_test:ActsAceEtsLayoutGridColTest",
"ace_ets_layout_gridRow_test:ActsAceEtsLayoutGridRowTest",
ohos_js_assets("ace_ets_component_flex_js_assets") {
source_dir = "entry/src/main/ets"
}
#"ace_ets_layout_list_test:ActsAceEtsLayoutListTest",
#"ace_ets_layout_relativeContainer_test:ActsAceEtsLayoutRelativeContainerTest",
"ace_ets_layout_row_test:ActsAceEtsLayoutRowTest",
ohos_resources("ace_ets_component_flex_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":ace_ets_component_flex_app_profile" ]
hap_profile = "entry/src/main/module.json"
#"ace_ets_layout_scroll_test:ActsAceEtsLayoutScrollTest",
#"ace_ets_layout_stack_test:ActsAceEtsLayoutStackTest",
#"ace_ets_layout_swiper_test:ActsAceEtsLayoutSwiperTest",
#"ace_ets_layout_tabs_test:ActsAceEtsLayoutTabsTest",
# "ace_ets_layout_waterflow_test:ActsAceEtsLayoutWaterflowTest",
]
}
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "180000",
"bundle-name": "com.acts.arkui.layout.test",
"module-name": "phone",
"shell-timeout": "600000",
"testcase-timeout": 60000
},
"kits": [{
"test-file-name": [
"ActsAceEtsLayoutTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}, {
"type": "ShellKit",
"run-command": [
"power-shell wakeup",
"power-shell setmode 602"
]
}]
}
\ No newline at end of file
# Copyright (c) 2023 iSoftStone Information Technology (Group) 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")
ohos_js_hap_suite("ActsAceEtsLayoutColumnTest") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":ace_ets_layout_column_test_js_assets",
":ace_ets_layout_column_test_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAceEtsLayoutColumnTest"
}
ohos_app_scope("ace_ets_layout_column_test_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("ace_ets_layout_column_test_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("ace_ets_layout_column_test_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":ace_ets_layout_column_test_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "180000",
"bundle-name": "com.acts.arkui.layout.test",
"module-name": "phone",
"shell-timeout": "600000",
"testcase-timeout": 60000
},
"kits": [{
"test-file-name": [
"ActsAceEtsLayoutColumnTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}, {
"type": "ShellKit",
"run-command": [
"power-shell wakeup",
"power-shell setmode 602"
]
}]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册