diff --git a/BUILD.gn b/BUILD.gn index 86d4eb3c7a4abbc79e512e6204f9a4107c42ed78..165711309866b51f2ab95a1ad23c5e22b1bbe2fb 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -11,17 +11,16 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//build/lite/config/subsystem/lite_subsystem.gni") import("//build/lite/ndk/ndk.gni") -lite_subsystem("utils") { - subsystem_components = [ +group("utils") { + deps = [ "kv_store:kv_store", "os_dump:utils_os_dump", ] if (ohos_kernel_type == "liteos_m") { - subsystem_components += [ "file:file" ] + deps += [ "file:file" ] } }