b24e17db10
- This avoids flags from being enabled in Trunkfood partrial unless the dependency is also enabled Bug: 408178115 Test: build and smoke test Flag: EXEMPT flag only Change-Id: Iccf9a9368383ab14a9abf7a1198c8a0c372b103f
31 lines
1.0 KiB
Kotlin
31 lines
1.0 KiB
Kotlin
/*
|
|
* Copyright (C) 2025 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.
|
|
*/
|
|
|
|
package com.android.launcher3.util
|
|
|
|
import com.android.launcher3.Flags
|
|
|
|
object OverviewReleaseFlags {
|
|
private fun enableOverviewNewLayout() =
|
|
Flags.enableRefactorTaskThumbnail() &&
|
|
Flags.enableOverviewIconMenu() &&
|
|
Flags.enableGridOnlyOverview()
|
|
|
|
@JvmStatic fun enableOverviewIconMenu() = enableOverviewNewLayout()
|
|
|
|
@JvmStatic fun enableGridOnlyOverview() = enableOverviewNewLayout()
|
|
}
|