Add alias and option to support migration

The main goal of the change is to allow us to change the name of the
blobId while making sure the existing data is still valid during the
migration. Added an alias option which allow us to have two possible
valid blobId and will use the `baseBlobId` to commit the data even if
the current data match the alish ID. This allow us to change the blobId
of the binary store without loosing the data.

Also added an option to revert back to the alias blobId with the
`blobtool` to support backward compatibility when we need to downgrade
to a version without alias support. Created the base service that gets
trigger to start the blob id revert.

Tested:

Tested backward compatibility and working fine. The blob data are not
lost between versions.

Change-Id: I75bcbce3aff20c6ee8a491bef36fac260595d6f7
Signed-off-by: Willy Tu <wltu@google.com>
diff --git a/meson.build b/meson.build
index dba4b57..8da9f47 100644
--- a/meson.build
+++ b/meson.build
@@ -13,6 +13,7 @@
 subdir('proto')
 subdir('include')
 subdir('src')
+subdir('service')
 
 if not get_option('tests').disabled()
   subdir('test')