Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
5fd1c9d3
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
5fd1c9d3
编写于
8月 04, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 04, 2022
浏览文件
操作
浏览文件
下载
差异文件
!4797 无障碍xts Build.gn中增加子系统与部件配置字段
Merge pull request !4797 from Mupceet/release_0726_xts
上级
bdb4d0ba
4d823b5d
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
25 addition
and
1 deletion
+25
-1
barrierfree/accessibilityconfig/BUILD.gn
barrierfree/accessibilityconfig/BUILD.gn
+2
-0
barrierfree/accessibilityelement/BUILD.gn
barrierfree/accessibilityelement/BUILD.gn
+2
-0
barrierfree/accessibilityevent/BUILD.gn
barrierfree/accessibilityevent/BUILD.gn
+2
-0
barrierfree/accessibilityextension/BUILD.gn
barrierfree/accessibilityextension/BUILD.gn
+2
-0
barrierfree/accessibilityextensioncontext/BUILD.gn
barrierfree/accessibilityextensioncontext/BUILD.gn
+2
-0
barrierfree/accessibilitygestureevent/BUILD.gn
barrierfree/accessibilitygestureevent/BUILD.gn
+2
-0
barrierfree/accessibleabilitylist/BUILD.gn
barrierfree/accessibleabilitylist/BUILD.gn
+2
-0
barrierfree/accessiblecaptionconfiguration/BUILD.gn
barrierfree/accessiblecaptionconfiguration/BUILD.gn
+2
-0
barrierfree/accessiblecheckability/BUILD.gn
barrierfree/accessiblecheckability/BUILD.gn
+2
-0
barrierfree/accessibleregisterstate/BUILD.gn
barrierfree/accessibleregisterstate/BUILD.gn
+2
-0
barrierfree/accessiblesendevent/BUILD.gn
barrierfree/accessiblesendevent/BUILD.gn
+2
-0
barrierfree/targetProject/aceTest/BUILD.gn
barrierfree/targetProject/aceTest/BUILD.gn
+3
-1
未找到文件。
barrierfree/accessibilityconfig/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -22,6 +22,8 @@ ohos_js_hap_suite("ActsAccessibilityConfigTest") {
...
@@ -22,6 +22,8 @@ ohos_js_hap_suite("ActsAccessibilityConfigTest") {
ets2abc = true
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilityConfigTest"
hap_name = "ActsAccessibilityConfigTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_app_scope("accessibilityconfig_app_profile") {
ohos_app_scope("accessibilityconfig_app_profile") {
...
...
barrierfree/accessibilityelement/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityElementTest") {
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityElementTest") {
ets2abc = true
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilityElementTest"
hap_name = "ActsAccessibilityElementTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_app_scope("accessibilityelement_app_profile") {
ohos_app_scope("accessibilityelement_app_profile") {
...
...
barrierfree/accessibilityevent/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityEventTest") {
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityEventTest") {
ets2abc = true
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilityEventTest"
hap_name = "ActsAccessibilityEventTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_app_scope("accessibilityevent_app_profile") {
ohos_app_scope("accessibilityevent_app_profile") {
...
...
barrierfree/accessibilityextension/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityExtensionTest") {
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityExtensionTest") {
ets2abc = true
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilityExtensionTest"
hap_name = "ActsAccessibilityExtensionTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_app_scope("accessibilityextension_app_profile") {
ohos_app_scope("accessibilityextension_app_profile") {
...
...
barrierfree/accessibilityextensioncontext/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityExtensionContextTest") {
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityExtensionContextTest") {
ets2abc = true
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilityExtensionContextTest"
hap_name = "ActsAccessibilityExtensionContextTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_app_scope("accessibilityextensioncontext_app_profile") {
ohos_app_scope("accessibilityextensioncontext_app_profile") {
...
...
barrierfree/accessibilitygestureevent/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityGestureEventTest") {
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsAccessibilityGestureEventTest") {
ets2abc = true
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAccessibilityGestureEventTest"
hap_name = "ActsAccessibilityGestureEventTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_app_scope("accessibilitygestureevent_app_profile") {
ohos_app_scope("accessibilitygestureevent_app_profile") {
...
...
barrierfree/accessibleabilitylist/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleAbilityListTest") {
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleAbilityListTest") {
]
]
certificate_profile = "./signature/openharmony_sx.p7b"
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsAccessibleAbilityListTest"
hap_name = "ActsAccessibleAbilityListTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_js_assets("hjs_demo_js_assets") {
ohos_js_assets("hjs_demo_js_assets") {
js2abc = true
js2abc = true
...
...
barrierfree/accessiblecaptionconfiguration/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleCaptionConfigurationTest") {
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleCaptionConfigurationTest") {
]
]
certificate_profile = "./signature/openharmony_sx.p7b"
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsAccessibleCaptionConfigurationTest"
hap_name = "ActsAccessibleCaptionConfigurationTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_js_assets("hjs_demo_js_assets") {
ohos_js_assets("hjs_demo_js_assets") {
js2abc = true
js2abc = true
...
...
barrierfree/accessiblecheckability/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleCheckAbilityTest") {
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleCheckAbilityTest") {
]
]
certificate_profile = "./signature/openharmony_sx.p7b"
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsAccessibleCheckAbilityTest"
hap_name = "ActsAccessibleCheckAbilityTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_js_assets("hjs_demo_js_assets") {
ohos_js_assets("hjs_demo_js_assets") {
js2abc = true
js2abc = true
...
...
barrierfree/accessibleregisterstate/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleRegisterStateTest") {
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleRegisterStateTest") {
]
]
certificate_profile = "./signature/openharmony_sx.p7b"
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsAccessibleRegisterStateTest"
hap_name = "ActsAccessibleRegisterStateTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_js_assets("hjs_demo_js_assets") {
ohos_js_assets("hjs_demo_js_assets") {
js2abc = true
js2abc = true
...
...
barrierfree/accessiblesendevent/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleSendEventTest") {
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("ActsAccessibleSendEventTest") {
]
]
certificate_profile = "./signature/openharmony_sx.p7b"
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsAccessibleSendEventTest"
hap_name = "ActsAccessibleSendEventTest"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_js_assets("hjs_demo_js_assets") {
ohos_js_assets("hjs_demo_js_assets") {
js2abc = true
js2abc = true
...
...
barrierfree/targetProject/aceTest/BUILD.gn
浏览文件 @
5fd1c9d3
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
import("//test/xts/tools/build/suite.gni")
import("//test/xts/tools/build/suite.gni")
ohos_
js_hap
_suite("aceTest") {
ohos_
hap_assist
_suite("aceTest") {
hap_profile = "entry/src/main/module.json"
hap_profile = "entry/src/main/module.json"
hap_name = "aceTest"
hap_name = "aceTest"
testonly = true
testonly = true
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("aceTest") {
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("aceTest") {
]
]
ets2abc = true
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
certificate_profile = "signature/openharmony_sx.p7b"
part_name = "accessibility"
subsystem_name = "barrierfree"
}
}
ohos_app_scope("acetest_app_profile") {
ohos_app_scope("acetest_app_profile") {
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录