Merge "trunks: Fix generator bug in handle serialization"
diff --git a/Makefile b/Makefile
index c8cb335..9afcbd7 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@
 
 include common.mk
 
-PC_DEPS = libchrome-$(BASE_VER) libchromeos-$(BASE_VER) openssl
+PC_DEPS = libchrome-$(BASE_VER) libbrillo-$(BASE_VER) openssl
 PC_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PC_DEPS))
 PC_LIBS := $(shell $(PKG_CONFIG) --libs $(PC_DEPS))
 
diff --git a/trunks.gyp b/trunks.gyp
index 4203bc5..d9c709c 100644
--- a/trunks.gyp
+++ b/trunks.gyp
@@ -19,8 +19,8 @@
     'includes': ['../../../platform2/common-mk/common.gypi'],
     'variables': {
       'deps': [  # This is a list of pkg-config dependencies
+        'libbrillo-<(libbase_ver)',
         'libchrome-<(libbase_ver)',
-        'libchromeos-<(libbase_ver)',
         'openssl',
         'protobuf-lite',
       ],