From b9cbfd6d42041e198248f4c3f180c6196abdebf4 Mon Sep 17 00:00:00 2001 From: wengchangcheng Date: Tue, 28 Sep 2021 17:29:28 +0800 Subject: [PATCH] fix compiler error Signed-off-by: wengchangcheng --- ecmascript/tooling/test/BUILD.gn | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ecmascript/tooling/test/BUILD.gn b/ecmascript/tooling/test/BUILD.gn index 0e0a0ca499..166290e63b 100644 --- a/ecmascript/tooling/test/BUILD.gn +++ b/ecmascript/tooling/test/BUILD.gn @@ -67,7 +67,7 @@ ohos_shared_library("jsdebugtest") { ] if (!is_standard_system) { - _deps_ += [ "$ark_root/runtime:libarkruntime" ] + deps += [ "$ark_root/runtime:libarkruntime" ] } output_extension = "so" @@ -99,7 +99,7 @@ host_unittest_action("EcmaDebugApiTest") { ] if (!is_standard_system) { - _deps_ += [ "$ark_root/runtime:libarkruntime" ] + deps += [ "$ark_root/runtime:libarkruntime" ] } } @@ -126,7 +126,7 @@ host_unittest_action("DebuggerCommandsTest") { ] if (!is_standard_system) { - _deps_ += [ "$ark_root/runtime:libarkruntime" ] + deps += [ "$ark_root/runtime:libarkruntime" ] } } @@ -153,7 +153,7 @@ host_unittest_action("DebuggerEventsTest") { ] if (!is_standard_system) { - _deps_ += [ "$ark_root/runtime:libarkruntime" ] + deps += [ "$ark_root/runtime:libarkruntime" ] } } @@ -180,7 +180,7 @@ host_unittest_action("DebuggerTypesTest") { ] if (!is_standard_system) { - _deps_ += [ "$ark_root/runtime:libarkruntime" ] + deps += [ "$ark_root/runtime:libarkruntime" ] } } -- Gitee