Add Attestation related D-bus Interface

Attestation provides critical and pertinent
security information about a specific device, system, software
element, or other managed entity.

Three relevant interfaces are defined as below.

ComponentIntegrity describes integrity of a component, including
what protocol used to measure the integrity, when was the integrity
info last updated, whether the integrity measurement is enabled, etc.
Some associations have been added to this interface, including a link
to the trusted component that the integrity object is reporting,
and a link to the systems that the integrity object is protecting.

IdentityAuthentication describes the identity verification status. It
also has two associations defined, one is a link to the requester's
certificate, the other one for the responder.

MeasurementSet defines the dbus method to get SPDM measurements.

These three interfaces are grouped under a new directory Attestation as
they are used to expose identity/integrity/measurement information for
an attestation.

Signed-off-by: Zhichuang Sun <zhichuang@google.com>
Change-Id: Iac86dfc63c85af04985a61ba52161301134e8f2b
diff --git a/gen/xyz/openbmc_project/Attestation/meson.build b/gen/xyz/openbmc_project/Attestation/meson.build
new file mode 100644
index 0000000..86e0952
--- /dev/null
+++ b/gen/xyz/openbmc_project/Attestation/meson.build
@@ -0,0 +1,46 @@
+# Generated file; do not modify.
+subdir('ComponentIntegrity')
+generated_others += custom_target(
+    'xyz/openbmc_project/Attestation/ComponentIntegrity__markdown'.underscorify(),
+    input: [ '../../../../yaml/xyz/openbmc_project/Attestation/ComponentIntegrity.interface.yaml',  ],
+    output: [ 'ComponentIntegrity.md' ],
+    depend_files: sdbusplusplus_depfiles,
+    command: [
+        sdbuspp_gen_meson_prog, '--command', 'markdown',
+        '--output', meson.current_build_dir(),
+        '--tool', sdbusplusplus_prog,
+        '--directory', meson.current_source_dir() / '../../../../yaml',
+        'xyz/openbmc_project/Attestation/ComponentIntegrity',
+    ],
+)
+
+subdir('IdentityAuthentication')
+generated_others += custom_target(
+    'xyz/openbmc_project/Attestation/IdentityAuthentication__markdown'.underscorify(),
+    input: [ '../../../../yaml/xyz/openbmc_project/Attestation/IdentityAuthentication.interface.yaml',  ],
+    output: [ 'IdentityAuthentication.md' ],
+    depend_files: sdbusplusplus_depfiles,
+    command: [
+        sdbuspp_gen_meson_prog, '--command', 'markdown',
+        '--output', meson.current_build_dir(),
+        '--tool', sdbusplusplus_prog,
+        '--directory', meson.current_source_dir() / '../../../../yaml',
+        'xyz/openbmc_project/Attestation/IdentityAuthentication',
+    ],
+)
+
+subdir('MeasurementSet')
+generated_others += custom_target(
+    'xyz/openbmc_project/Attestation/MeasurementSet__markdown'.underscorify(),
+    input: [ '../../../../yaml/xyz/openbmc_project/Attestation/MeasurementSet.interface.yaml',  ],
+    output: [ 'MeasurementSet.md' ],
+    depend_files: sdbusplusplus_depfiles,
+    command: [
+        sdbuspp_gen_meson_prog, '--command', 'markdown',
+        '--output', meson.current_build_dir(),
+        '--tool', sdbusplusplus_prog,
+        '--directory', meson.current_source_dir() / '../../../../yaml',
+        'xyz/openbmc_project/Attestation/MeasurementSet',
+    ],
+)
+