fixup! [M108 Migration][WRTjs] Introduce VconfHandle 65/289365/3
authorChandan Padhi <c.padhi@samsung.com>
Mon, 6 Mar 2023 15:31:51 +0000 (21:01 +0530)
committerBot Blink <blinkbot@samsung.com>
Tue, 7 Mar 2023 07:09:17 +0000 (07:09 +0000)
This commit fixes a desktop build error introduced by the parent
patch.

Change-Id: I4657f4510458199bacc223e66cef02cb4b0e2d31
Signed-off-by: Chandan Padhi <c.padhi@samsung.com>
tizen_src/chromium_impl/tizen/BUILD.gn

index efcb5c1..520c16b 100644 (file)
@@ -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" ]
+  }
 }