mirror of
https://gitee.com/openharmony/arkui_ace_engine
synced 2024-11-23 07:01:24 +00:00
Signed-off-by: zhongjianfei <zhongjianfei@huawei.com> Change-Id: Ib383e17d235c4b6ce7fbb9982205c9742a32b166
This commit is contained in:
parent
fc0265f84f
commit
d5dba5078d
@ -18,7 +18,8 @@ ace_flutter_engine_root = "//third_party/flutter"
|
||||
|
||||
ace_test_output_root = "ace_engine_standard"
|
||||
|
||||
objcopy_aarch64 = "//prebuilts/gcc/linux-x86/arm/gcc-linaro-7.5.0-arm-linux-gnueabi/arm-linux-gnueabi/bin/objcopy"
|
||||
objcopy_arm = "//prebuilts/gcc/linux-x86/arm/gcc-linaro-7.5.0-arm-linux-gnueabi/arm-linux-gnueabi/bin/objcopy"
|
||||
objcopy_aarch64 = "//prebuilts/gcc/linux-x86/aarch64/gcc-linaro-7.5.0-2019.12-x86_64_aarch64-linux-gnu/aarch64-linux-gnu/bin/objcopy"
|
||||
objcopy_x86_64 = ""
|
||||
ark_tools_root = "//prebuilts/ace-toolkit/ace-loader/panda"
|
||||
node_js_path = "//prebuilts/ace-toolkit/nodejs/node-v12.18.4-linux-x64/bin/"
|
||||
|
@ -2457,11 +2457,11 @@ JSValue JSWindowCallBack(JSContext* ctx, JSValueConst value, int32_t argc, JSVal
|
||||
LOGI("JSWindowCallBack");
|
||||
JSValue globalObj = JS_GetGlobalObject(ctx);
|
||||
JSValue id = JS_GetPropertyStr(ctx, globalObj, "dialogId");
|
||||
int32_t global_id;
|
||||
JS_ToInt32(ctx, &global_id, id);
|
||||
int32_t globalId = -1;
|
||||
JS_ToInt32(ctx, &globalId, id);
|
||||
|
||||
for (auto& iter : g_JsEngindMap) {
|
||||
if (iter.first == id) {
|
||||
if (iter.first == globalId) {
|
||||
JsEngine* jsEngine = iter.second;
|
||||
if (jsEngine == nullptr) {
|
||||
return JS_NULL;
|
||||
|
@ -276,7 +276,7 @@ config("config_render_checkable_test") {
|
||||
group("unittest") {
|
||||
testonly = true
|
||||
deps = [
|
||||
":CheckableComponentTest",
|
||||
":CheckableCreatorTest",
|
||||
#":CheckableComponentTest",
|
||||
#":CheckableCreatorTest",
|
||||
]
|
||||
}
|
||||
|
@ -102,7 +102,7 @@ group("unittest") {
|
||||
deps = []
|
||||
|
||||
deps += [
|
||||
":RenderTextFieldTest",
|
||||
":TextFieldCreatorTest",
|
||||
#":RenderTextFieldTest",
|
||||
#":TextFieldCreatorTest",
|
||||
]
|
||||
}
|
||||
|
@ -61,5 +61,5 @@ group("unittest") {
|
||||
testonly = true
|
||||
deps = []
|
||||
|
||||
deps += [ ":RenderTextSelectTest" ]
|
||||
#deps += [ ":RenderTextSelectTest" ]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user