blob: affbc309f5acb1848e3c98893ea080ced9e83b2e [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "linkerconfig/variables.h"
inline void MockVariables(std::string vndk_ver = "Q") {
android::linkerconfig::modules::Variables::AddValue("VNDK_VER", vndk_ver);
android::linkerconfig::modules::Variables::AddValue("PRODUCT", "product");
android::linkerconfig::modules::Variables::AddValue("SYSTEM_EXT",
"system_ext");
android::linkerconfig::modules::Variables::AddValue("LLNDK_LIBRARIES",
"llndk_libraries");
android::linkerconfig::modules::Variables::AddValue(
"SANITIZER_RUNTIME_LIBRARIES", "sanitizer_runtime_libraries");
android::linkerconfig::modules::Variables::AddValue(
"PRIVATE_LLNDK_LIBRARIES", "private_llndk_libraries");
android::linkerconfig::modules::Variables::AddValue(
"VNDK_SAMEPROCESS_LIBRARIES", "vndk_sameprocess_libraries");
android::linkerconfig::modules::Variables::AddValue("VNDK_CORE_LIBRARIES",
"vndk_core_libraries");
android::linkerconfig::modules::Variables::AddValue(
"VNDK_USING_CORE_VARIANT_LIBRARIES", "vndk_using_core_variant_libraries");
}