Merge "[Service] StopService when appid is empty" into tizen
[platform/framework/web/wrtjs.git] / BUILD.gn
old mode 100644 (file)
new mode 100755 (executable)
index 1a9e212..8790efe
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -27,10 +27,23 @@ toolchain("gcc") {
     command = "touch {{output}}"
     description = "STAMP {{output}}"
   }
+  tool("solink") {
+    soname = "{{target_output_name}}{{output_extension}}"
+    rpath = "-Wl,-soname,$soname"
+    command = "g++ -shared {{ldflags}} {{inputs}} {{solibs}} {{libs}} $rpath -o {{output}}"
+    outputs = [
+      "{{root_out_dir}}/$soname",
+    ]
+    output_prefix = "lib"
+    default_output_extension = ".so"
+    description = "link {{output}}"
+  }
 }
 
 group("wrt_group") {
   deps = [
     "//loader:wrt-loader",
+    "//wrt_feature/nmt_service:nmt",
+    "//wrt_feature/category_service:category",
   ]
 }