Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
0e108875
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看板
未验证
提交
0e108875
编写于
8月 03, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 03, 2022
浏览文件
操作
浏览文件
下载
差异文件
!4792 add subsystem and part name
Merge pull request !4792 from 杨清/1228
上级
4150bfc0
c4df4d4e
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
16 addition
and
4 deletion
+16
-4
customization/TestExtensionAbility_001/BUILD.gn
customization/TestExtensionAbility_001/BUILD.gn
+2
-0
customization/edm_xts_stage/BUILD.gn
customization/edm_xts_stage/BUILD.gn
+2
-0
global/global_napi_test/BUILD.gn
global/global_napi_test/BUILD.gn
+2
-0
global/global_napi_test/entry/src/main/cpp/napi/test_string.cpp
.../global_napi_test/entry/src/main/cpp/napi/test_string.cpp
+1
-1
global/i18n_standard/intljs/BUILD.gn
global/i18n_standard/intljs/BUILD.gn
+3
-1
global/perf/perfjs/BUILD.gn
global/perf/perfjs/BUILD.gn
+3
-1
global/resmgr_standard/resmgrjs/BUILD.gn
global/resmgr_standard/resmgrjs/BUILD.gn
+3
-1
未找到文件。
customization/TestExtensionAbility_001/BUILD.gn
浏览文件 @
0e108875
...
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ExtensionZeroTest") {
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ExtensionZeroTest"
subsystem_name = "customization"
part_name = "enterprise_device_management"
}
ohos_app_scope("extensionZeroTest_app_profile") {
...
...
customization/edm_xts_stage/BUILD.gn
浏览文件 @
0e108875
...
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsEdmTest") {
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsEdmTest"
subsystem_name = "customization"
part_name = "enterprise_device_management"
}
ohos_app_scope("edm_app_profile") {
...
...
global/global_napi_test/BUILD.gn
浏览文件 @
0e108875
...
...
@@ -23,6 +23,8 @@ ohos_js_hap_suite("ActsGlobalNapiTest") {
ets2abc = true
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsGlobalNapiTest"
subsystem_name = "global"
part_name = "resource_management"
shared_libraries = [ "./entry/src/main/cpp:resmgrndk" ]
}
...
...
global/global_napi_test/entry/src/main/cpp/napi/test_string.cpp
浏览文件 @
0e108875
...
...
@@ -243,7 +243,7 @@ namespace OHOS {
static
napi_value
Init
(
napi_env
env
,
napi_value
exports
)
{
napi_property_descriptor
desc
[]
=
{
{
"
add
"
,
nullptr
,
GetResourceManager
,
nullptr
,
nullptr
,
nullptr
,
napi_default
,
nullptr
}
{
"
testRawFile
"
,
nullptr
,
GetResourceManager
,
nullptr
,
nullptr
,
nullptr
,
napi_default
,
nullptr
}
};
napi_define_properties
(
env
,
exports
,
sizeof
(
desc
)
/
sizeof
(
desc
[
0
]),
desc
);
return
exports
;
...
...
global/i18n_standard/intljs/BUILD.gn
浏览文件 @
0e108875
...
...
@@ -9,7 +9,7 @@
# 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.
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
...
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("intljs_test") {
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsIntlJsTest"
subsystem_name = "global"
part_name = "i18n"
}
ohos_js_assets("intljs_assets") {
js2abc = true
...
...
global/perf/perfjs/BUILD.gn
浏览文件 @
0e108875
...
...
@@ -9,7 +9,7 @@
# 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.
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
...
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("perfjs_test") {
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsGlobalPerfJsTest"
subsystem_name = "global"
part_name = "i18n"
}
ohos_js_assets("perfjs_assets") {
js2abc = true
...
...
global/resmgr_standard/resmgrjs/BUILD.gn
浏览文件 @
0e108875
...
...
@@ -9,7 +9,7 @@
# 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.
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
...
...
@@ -21,6 +21,8 @@ ohos_js_hap_suite("resmgrjs_test") {
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsResMgrJsTest"
subsystem_name = "global"
part_name = "resource_management"
}
ohos_js_assets("resmgrjs_assets") {
js2abc = true
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录