From 4577a501fc0a125b7af415b2dc9b1a15a639a9c7 Mon Sep 17 00:00:00 2001 From: Chandan Padhi Date: Mon, 6 Mar 2023 21:01:51 +0530 Subject: [PATCH] fixup! [M108 Migration][WRTjs] Introduce VconfHandle This commit fixes a desktop build error introduced by the parent patch. Change-Id: I4657f4510458199bacc223e66cef02cb4b0e2d31 Signed-off-by: Chandan Padhi --- tizen_src/chromium_impl/tizen/BUILD.gn | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tizen_src/chromium_impl/tizen/BUILD.gn b/tizen_src/chromium_impl/tizen/BUILD.gn index efcb5c1..520c16b 100644 --- a/tizen_src/chromium_impl/tizen/BUILD.gn +++ b/tizen_src/chromium_impl/tizen/BUILD.gn @@ -10,10 +10,14 @@ static_library("system-info") { public_configs = [ "//tizen_src/build:capi-system-info-public" ] sources = [ - "vconf_handle.cc", - "vconf_handle.h", - "system_info.h", "system_info.cc", + "system_info.h", ] - deps = [ "//base" ] + if (is_tizen) { + sources += [ + "vconf_handle.cc", + "vconf_handle.h", + ] + deps = [ "//base" ] + } } -- 2.7.4