blob: 07cc92270ccd910acb708b26bd1cb3e4ba891ec7 [file] [edit]
// Copyright (c) 2023, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import java.io.File
public enum class DependencyType {
GOOGLE_STORAGE,
X20,
}
public data class ThirdPartyDependency(
val packageName: String,
val path: File,
val sha1File: File,
val testOnly: Boolean = false,
val type: DependencyType = DependencyType.GOOGLE_STORAGE,
)