build: enable all namespaces by default

To simplify CI and subproject workflows, enable all interface
namespaces by default.  In I0023fffe4679f7088f7b102772eaf3247c97f7d3,
we disable them in the Yocto recipe.

Signed-off-by: John Edward Broadbent <jebr@google.com>
Change-Id: Ibb65eddd6c3a3e32f64f4ddf7ac5da4526cab2b7
diff --git a/meson_options.txt b/meson_options.txt
index 7d4a23b..1570c41 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,8 +1,8 @@
 option('generate_md', type: 'boolean', value: true)
 option('libphosphor_dbus', type: 'boolean', value: true)
-option('data_com_ibm', type: 'boolean', value: false)
-option('data_com_intel', type: 'boolean', value: false)
-option('data_com_google', type: 'boolean', value: false)
+option('data_com_ibm', type: 'boolean', value: true)
+option('data_com_intel', type: 'boolean', value: true)
+option('data_com_google', type: 'boolean', value: true)
 option('data_org_freedesktop', type: 'boolean', value: true)
 option('data_org_open_power', type: 'boolean', value: false)
 option('data_xyz_openbmc_project', type: 'boolean', value: true)