blob: b413c62b1297f4ca4e9145c8fff379607688aa24 [file] [log] [blame]
/*
* Copyright (C) 2024 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.
*/
//! `aconfig_flags` is a crate for reading aconfig flags from Rust
// When building with the Android tool-chain
//
// - the flag functions will read from aconfig_flags_inner
// - the feature "cargo" will be disabled
//
// When building with cargo
//
// - the flag functions will all return some trivial value, like true
// - the feature "cargo" will be enabled
//
// This module hides these differences from the rest of aconfig.
/// Module used when building with the Android tool-chain
#[cfg(not(feature = "cargo"))]
pub mod auto_generated {
/// Returns the value for the enable_only_new_storage flag.
pub fn enable_only_new_storage() -> bool {
aconfig_flags_rust::enable_only_new_storage()
}
/// Returns the value for the enable_aconfigd_from_mainline flag.
pub fn enable_aconfigd_from_mainline() -> bool {
aconfig_flags_rust::enable_only_new_storage()
}
/// Returns the value for the enable_system_aconfigd_rust flag.
pub fn enable_system_aconfigd_rust() -> bool {
aconfig_flags_rust::enable_system_aconfigd_rust()
}
}
/// Module used when building with cargo
#[cfg(feature = "cargo")]
pub mod auto_generated {
/// Returns a placeholder value for the enable_only_new_storage flag.
pub fn enable_only_new_storage() -> bool {
// Used only to enable typechecking and testing with cargo
true
}
/// Returns a placeholder value for the enable_aconfigd_from_mainline flag.
pub fn enable_aconfigd_from_mainline() -> bool {
// Used only to enable typechecking and testing with cargo
true
}
/// Returns a placeholder value for the enable_system_aconfigd_rust flag.
pub fn enable_system_aconfigd_rust() -> bool {
// Used only to enable typechecking and testing with cargo
true
}
}