Move FQName statics off device.

FQName included some static variables used in the compiler. These were
causing unnecessary allocations of regex objects in multiple different
domains (20Kib/user).

Bug: 148177595
Test: boot/lshal
Change-Id: Idb8ec24a648c8787e18133e1baa52186292b0135
(cherry picked from commit 5592e5e0d4e54b559b4fd1abcbba6847d6ea8ff8)
Merged-In: Idb8ec24a648c8787e18133e1baa52186292b0135
diff --git a/Interface.cpp b/Interface.cpp
index 0029f43..af6315f 100644
--- a/Interface.cpp
+++ b/Interface.cpp
@@ -982,5 +982,8 @@
     return true;
 }
 
+const FQName gIBaseFqName = FQName("android.hidl.base", "1.0", "IBase");
+const FQName gIManagerFqName = FQName("android.hidl.manager", "1.0", "IServiceManager");
+
 }  // namespace android