1596a9945SWludzik, Jozefgtest_dep = dependency('gtest', main: false, required: false, version: '>=1.10.0') 2596a9945SWludzik, Jozefgmock_dep = dependency('gmock', required: false, version: '>=1.10.0') 373da6906SKrzysztof Grobelnyif not gtest_dep.found() or not gmock_dep.found() 4596a9945SWludzik, Jozef gtest_proj = import('cmake').subproject('googletest') 5596a9945SWludzik, Jozef gtest_dep = gtest_proj.dependency('gtest') 673da6906SKrzysztof Grobelny gmock_dep = gtest_proj.dependency('gmock') 773da6906SKrzysztof Grobelnyendif 873da6906SKrzysztof Grobelny 973da6906SKrzysztof Grobelnytest( 1073da6906SKrzysztof Grobelny 'telemetry-ut', 1173da6906SKrzysztof Grobelny executable( 1273da6906SKrzysztof Grobelny 'telemetry-ut', 1373da6906SKrzysztof Grobelny [ 14*8069771cSKrzysztof Grobelny '../src/details/collection_function.cpp', 15f763c9e3SSzymon Dompke '../src/discrete_threshold.cpp', 16c8e3a64aSKrzysztof Grobelny '../src/metric.cpp', 171477fe6aSWludzik, Jozef '../src/numeric_threshold.cpp', 18f763c9e3SSzymon Dompke '../src/on_change_threshold.cpp', 1973da6906SKrzysztof Grobelny '../src/persistent_json_storage.cpp', 207f06f613SKrzysztof Grobelny '../src/report.cpp', 212f9f9b87SWludzik, Jozef '../src/report_factory.cpp', 227f06f613SKrzysztof Grobelny '../src/report_manager.cpp', 23b5645947SKrzysztof Grobelny '../src/sensor.cpp', 247f06f613SKrzysztof Grobelny '../src/sensor_cache.cpp', 2576833cb5SWludzik, Jozef '../src/trigger.cpp', 26d960e1f3SWludzik, Jozef '../src/trigger_actions.cpp', 271477fe6aSWludzik, Jozef '../src/trigger_factory.cpp', 2876833cb5SWludzik, Jozef '../src/trigger_manager.cpp', 29dcc4e193SKrzysztof Grobelny '../src/types/report_types.cpp', 304416fce6SCezary Zwolak '../src/utils/conversion_trigger.cpp', 31b5645947SKrzysztof Grobelny 'src/dbus_environment.cpp', 32b5645947SKrzysztof Grobelny 'src/main.cpp', 33b5645947SKrzysztof Grobelny 'src/stubs/dbus_sensor_object.cpp', 34d960e1f3SWludzik, Jozef 'src/test_conversion.cpp', 35b5645947SKrzysztof Grobelny 'src/test_detached_timer.cpp', 36f763c9e3SSzymon Dompke 'src/test_discrete_threshold.cpp', 37c8e3a64aSKrzysztof Grobelny 'src/test_metric.cpp', 381477fe6aSWludzik, Jozef 'src/test_numeric_threshold.cpp', 39f763c9e3SSzymon Dompke 'src/test_on_change_threshold.cpp', 4073da6906SKrzysztof Grobelny 'src/test_persistent_json_storage.cpp', 412f9f9b87SWludzik, Jozef 'src/test_report.cpp', 422f9f9b87SWludzik, Jozef 'src/test_report_manager.cpp', 43b5645947SKrzysztof Grobelny 'src/test_sensor.cpp', 447f06f613SKrzysztof Grobelny 'src/test_sensor_cache.cpp', 45e2362796SWludzik, Jozef 'src/test_transform.cpp', 4676833cb5SWludzik, Jozef 'src/test_trigger.cpp', 47d960e1f3SWludzik, Jozef 'src/test_trigger_actions.cpp', 4876833cb5SWludzik, Jozef 'src/test_trigger_manager.cpp', 49b5645947SKrzysztof Grobelny 'src/test_unique_call.cpp', 507f06f613SKrzysztof Grobelny 'src/utils/generate_unique_mock_id.cpp', 5173da6906SKrzysztof Grobelny ], 5273da6906SKrzysztof Grobelny dependencies: [ 5373da6906SKrzysztof Grobelny boost, 5473da6906SKrzysztof Grobelny gmock_dep, 5573da6906SKrzysztof Grobelny gtest_dep, 5673da6906SKrzysztof Grobelny nlohmann_json, 5773da6906SKrzysztof Grobelny phosphor_logging, 5873da6906SKrzysztof Grobelny sdbusplus, 5973da6906SKrzysztof Grobelny ], 60a74e44f6SLukasz Kazmierczak include_directories: ['../src', 'src'], 61a74e44f6SLukasz Kazmierczak cpp_args: '-fno-lto' 626ccfcbf5SKrzysztof Grobelny ), 636ccfcbf5SKrzysztof Grobelny timeout: 120, 6473da6906SKrzysztof Grobelny) 65