huddly-updater: use unversioned libchrome libraray.

Libchrome is changing pkg-config and .so library name from
xxxx-${libbase_ver}.{pc,so} to xxx.{pc,so}.

Libchrome uprev rebuild will be handled by ebuild subslot change. And
there's no need to install multiple libchrome. Keeping libbase_ver
suffix will cause troubles on linking libraries when developers wants to
test locally emerge a-single-package without build_packages, after a
libchrome uprev. Especially in a case a package depends on another
package(library), and both depends on libchrome. Thus, removing
libbase_ver from suffix.

BUG=chromium:920513
TEST=CQ

Change-Id: Ibec7a70b5e044c9f549073e278a5fb3f05ff739d
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/huddly-updater/+/2505289
Reviewed-by: Joe Tessler <jrt@chromium.org>
Commit-Queue: Qijiang Fan <fqj@google.com>
Tested-by: Qijiang Fan <fqj@google.com>
diff --git a/src/common/messagepack/module.mk b/src/common/messagepack/module.mk
index 2a53cf1..b1517ba 100644
--- a/src/common/messagepack/module.mk
+++ b/src/common/messagepack/module.mk
@@ -4,7 +4,7 @@
 
 include common.mk
 
-PC_DEPS = libbrillo libchrome-$(BASE_VER) libusb-1.0 libudev msgpack
+PC_DEPS = libbrillo libchrome libusb-1.0 libudev msgpack
 PC_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PC_DEPS))
 PC_LIBS := $(shell $(PKG_CONFIG) --libs $(PC_DEPS))
 LDLIBS += $(PC_LIBS)
diff --git a/src/huddly_go/module.mk b/src/huddly_go/module.mk
index be0db58..985804c 100644
--- a/src/huddly_go/module.mk
+++ b/src/huddly_go/module.mk
@@ -4,7 +4,7 @@
 
 include common.mk
 
-PC_DEPS = libbrillo libchrome-$(BASE_VER) libusb-1.0 libudev
+PC_DEPS = libbrillo libchrome libusb-1.0 libudev
 PC_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PC_DEPS))
 PC_LIBS := $(shell $(PKG_CONFIG) --libs $(PC_DEPS))
 LDLIBS += $(PC_LIBS)
diff --git a/src/huddly_hpk/module.mk b/src/huddly_hpk/module.mk
index 11a8f6b..0cbe9eb 100644
--- a/src/huddly_hpk/module.mk
+++ b/src/huddly_hpk/module.mk
@@ -4,7 +4,7 @@
 
 include common.mk
 
-PC_DEPS = libbrillo libchrome-$(BASE_VER) libusb-1.0 libudev msgpack
+PC_DEPS = libbrillo libchrome libusb-1.0 libudev msgpack
 PC_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PC_DEPS))
 PC_LIBS := $(shell $(PKG_CONFIG) --libs $(PC_DEPS))
 LDLIBS += $(PC_LIBS)