mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
don't build aub tests when aubstream is not available use only mock aub manager in ULTs Related-To: NEO-4446 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
15 lines
312 B
C++
15 lines
312 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/aub/aub_center.h"
|
|
|
|
namespace NEO {
|
|
aub_stream::AubManager *createAubManager(const aub_stream::AubManagerOptions &options) {
|
|
return aub_stream::AubManager::create(options);
|
|
}
|
|
} // namespace NEO
|