[igt-dev] [PATCH i-g-t v4 8/8] testplan/meson.build: re-indent file
Mauro Carvalho Chehab
mauro.chehab at linux.intel.com
Wed Mar 22 08:28:26 UTC 2023
From: Mauro Carvalho Chehab <mchehab at kernel.org>
As other meson.build files are using tabs to align, replace
spaces with tabs here too.
Just cosmetic changes.
Signed-off-by: Mauro Carvalho Chehab <mchehab at kernel.org>
---
docs/testplan/meson.build | 94 +++++++++++++++++++--------------------
1 file changed, 47 insertions(+), 47 deletions(-)
diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build
index 10ea4be9a3f5..fee568868167 100644
--- a/docs/testplan/meson.build
+++ b/docs/testplan/meson.build
@@ -9,65 +9,65 @@ stylesheet = join_paths(meson.current_source_dir(), 'testplan.css')
xe_test_config = join_paths(source_root, 'tests', 'xe', 'xe_test_config.json')
if not build_tests
- test_executables = []
+ test_executables = []
endif
-test_dict = { 'xe_tests': {
- 'input': xe_test_config, 'extra_args': []
- }
- }
+test_dict = { 'xe_tests':
+ { 'input': xe_test_config, 'extra_args': [] }
+ }
foreach testplan, fields: test_dict
- rst = custom_target(testplan + '.rst',
- build_by_default : true,
- command : [ igt_doc_script, '--config', '@INPUT@', '--rest', '@OUTPUT@' ] + fields['extra_args'],
- depends : test_executables,
- input : fields['input'],
- output : testplan + '.rst'
- )
+ rst = custom_target(testplan + '.rst',
+ build_by_default : true,
+ command : [ igt_doc_script, '--config', '@INPUT@', '--rest', '@OUTPUT@' ] + fields['extra_args'],
+ depends : test_executables,
+ input : fields['input'],
+ output : testplan + '.rst'
+ )
- if rst2html.found()
- custom_target(testplan + '.html',
- build_by_default : true,
- command : [ rst2html, '--stylesheet=' + stylesheet, '--field-name-limit=0', '@INPUT@', '@OUTPUT@' ],
- input : rst,
- output : testplan + '.html'
- )
- endif
+ if rst2html.found()
+ custom_target(testplan + '.html',
+ build_by_default : true,
+ command : [ rst2html, '--stylesheet=' + stylesheet, '--field-name-limit=0', '@INPUT@', '@OUTPUT@' ],
+ input : rst,
+ output : testplan + '.html'
+ )
+ endif
endforeach
if sphinx.found()
- if gen_rst_index.found()
- sphinx_out_dir = meson.current_build_dir()+ '/indexed_html'
+ if gen_rst_index.found()
+ sphinx_out_dir = meson.current_build_dir()+ '/indexed_html'
- index_rst = custom_target('index.rst',
- build_by_default : true,
- command : [ gen_rst_index, testplan_title, test_dict.keys(), meson.current_build_dir()],
- input : rst,
- output : 'index.rst'
- )
+ index_rst = custom_target('index.rst',
+ build_by_default : true,
+ command : [ gen_rst_index, testplan_title, test_dict.keys(), meson.current_build_dir()],
+ input : rst,
+ output : 'index.rst'
+ )
- custom_target('index.html',
- build_by_default : true,
- command : [ 'sphinx-build', '-c', meson.current_source_dir(), meson.current_build_dir(), sphinx_out_dir],
- input : index_rst,
- output : 'index.html'
- )
- endif
+ custom_target('index.html',
+ build_by_default : true,
+ command : [ 'sphinx-build', '-c', meson.current_source_dir(),
+ meson.current_build_dir(), sphinx_out_dir],
+ input : index_rst,
+ output : 'index.html'
+ )
+ endif
- if rst2pdf.found()
- sphinx_out_pdf = meson.current_build_dir() + '/pdf'
+ if rst2pdf.found()
+ sphinx_out_pdf = meson.current_build_dir() + '/pdf'
- custom_target('xe_tests.pdf',
- build_by_default : true,
- command : [ 'sphinx-build', '-c', meson.current_source_dir(),
- '-b', 'pdf',
- '-D', 'version=' + meson.project_version(),
- meson.current_build_dir(), sphinx_out_pdf],
- input : index_rst,
- output : 'xe_tests.pdf'
- )
- endif
+ custom_target('xe_tests.pdf',
+ build_by_default : true,
+ command : [ 'sphinx-build', '-c', meson.current_source_dir(),
+ '-b', 'pdf',
+ '-D', 'version=' + meson.project_version(),
+ meson.current_build_dir(), sphinx_out_pdf],
+ input : index_rst,
+ output : 'xe_tests.pdf'
+ )
+ endif
endif
build_info += 'Build simple html testplan documentation: @0@'.format(rst2html.found())
--
2.39.2
More information about the igt-dev
mailing list