meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I0931eb90e92b905028109030d225123a822597df
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/src/smbios-ipmi-blobs/meson.build b/src/smbios-ipmi-blobs/meson.build
index 62d1d4f..4906bb0 100644
--- a/src/smbios-ipmi-blobs/meson.build
+++ b/src/smbios-ipmi-blobs/meson.build
@@ -4,18 +4,15 @@
smbiosstore_common_deps = [ipmi_blob_dep, libipmid_dep, sdbusplus_dep]
shared_module(
- 'smbiosstore',
- 'main.cpp',
- 'handler.cpp',
- dependencies: [
- smbiosstore_common_deps,
- phosphor_logging_dep,
- ],
- include_directories: root_inc,
- install: true,
- install_dir: get_option('libdir') / 'blob-ipmid'
- )
+ 'smbiosstore',
+ 'main.cpp',
+ 'handler.cpp',
+ dependencies: [smbiosstore_common_deps, phosphor_logging_dep],
+ include_directories: root_inc,
+ install: true,
+ install_dir: get_option('libdir') / 'blob-ipmid',
+)
if get_option('tests').allowed()
- subdir('test')
+ subdir('test')
endif
diff --git a/src/smbios-ipmi-blobs/test/meson.build b/src/smbios-ipmi-blobs/test/meson.build
index 6e2c28e..e4e2828 100644
--- a/src/smbios-ipmi-blobs/test/meson.build
+++ b/src/smbios-ipmi-blobs/test/meson.build
@@ -2,26 +2,22 @@
gmock = dependency('gmock')
tests = [
- 'handler_unittest',
- 'handler_open_unittest',
- 'handler_readwrite_unittest',
- 'handler_statclose_unittest',
+ 'handler_unittest',
+ 'handler_open_unittest',
+ 'handler_readwrite_unittest',
+ 'handler_statclose_unittest',
]
foreach t : tests
- test(
- t,
- executable(
- t.underscorify(),
- t + '.cpp',
- '../handler.cpp',
- include_directories: ['../', root_inc],
- dependencies: [
- smbiosstore_common_deps,
- gtest,
- gmock
- ]
- ),
- protocol: 'gtest'
- )
+ test(
+ t,
+ executable(
+ t.underscorify(),
+ t + '.cpp',
+ '../handler.cpp',
+ include_directories: ['../', root_inc],
+ dependencies: [smbiosstore_common_deps, gtest, gmock],
+ ),
+ protocol: 'gtest',
+ )
endforeach