fw-update: tests: add missing dependency

The tests added with ef90b0d3b have an unlisted dependency on gmock,
which breaks the build when the gtest dependency is satisfied using the
suproject.  Add the missing dependency.

Change-Id: I352c8677c41d3763e252c92f590b1cbf68a5a612
Fixes: ef90b0d3b882766969afa2c2c430e1902bbc5e57
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/fw-update/test/meson.build b/fw-update/test/meson.build
index 757fdc9..61d95dd 100644
--- a/fw-update/test/meson.build
+++ b/fw-update/test/meson.build
@@ -21,6 +21,7 @@
                      build_rpath: get_option('oe-sdk').enabled() ? rpath : '',
                      dependencies: [
                          fw_update_test_src,
+                         gmock,
                          gtest,
                          libpldm_dep,
                          nlohmann_json,