From fb8be5ab1d56e29976549874ba5c9a291e9841de Mon Sep 17 00:00:00 2001 From: zhangxiao72 Date: Mon, 25 Apr 2022 15:02:48 +0800 Subject: [PATCH] =?UTF-8?q?ace=5Fengine=E3=80=81napi=20=E9=83=A8=E4=BB=B6?= =?UTF-8?q?=E5=90=8D=E4=BB=93=E5=90=8D=E5=92=8C=E7=9B=AE=E5=BD=95=E5=90=8D?= =?UTF-8?q?=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I1f7c3e7fc07326b6542e2a33c03eb5e22a5601b8 Signed-off-by: zhangxiao72 --- BUILD.gn | 8 ++++---- README.md | 4 ++-- README.zh.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index d807ae6..b1ec3f8 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -17,20 +17,20 @@ ohos_shared_library("worker") { include_dirs = [ "//base/compileruntime/js_worker_module/worker", "//base/compileruntime/js_worker_module/helper", - "//base/compileruntime/js_worker_module/plugin" + "//base/compileruntime/js_worker_module/plugin", ] sources = [ + "helper/napi_helper.cpp", + "plugin/timer.cpp", "worker/message_queue.cpp", "worker/native_module_worker.cpp", "worker/thread.cpp", "worker/worker.cpp", "worker/worker_runner.cpp", - "helper/napi_helper.cpp", - "plugin/timer.cpp" ] - deps = [ "//foundation/ace/napi:ace_napi" ] + deps = [ "//foundation/arkui/napi:ace_napi" ] if (is_standard_system) { external_deps = [ "hiviewdfx_hilog_native:libhilog" ] diff --git a/README.md b/README.md index eaab4b3..523429d 100644 --- a/README.md +++ b/README.md @@ -356,8 +356,8 @@ parentPort.onmessageerror = function(e) { ### Repositories Involved -- ace_ace_engine(foundation/ace/ace_engine-readme.md) -- ace_napi(foundation/ace/napi-readme.md) +- ace_ace_engine(foundation/arkui/ace_engine-readme.md) +- ace_napi(foundation/arkui/napi-readme.md) ## Related warehouse [js_worker_module Subsystem](base/compileruntime/js_worker_module-readme.md) diff --git a/README.zh.md b/README.zh.md index fd02915..c51d497 100644 --- a/README.zh.md +++ b/README.zh.md @@ -356,8 +356,8 @@ parentPort.onmessageerror = function(e) { ### 涉及仓 -- ace_ace_engine(foundation/ace/ace_engine-readme_zh.md) -- ace_napi(foundation/ace/napi-readme_zh.md) +- ace_ace_engine(foundation/arkui/ace_engine-readme_zh.md) +- ace_napi(foundation/arkui/napi-readme_zh.md) ## 相关仓 [js_worker_module 子系统](base/compileruntime/js_worker_module-readme_zh.md) -- Gitee