blob: bd462a765779721d3ea59697d9b330d6a8027632 [file] [log] [blame]
/*
* Copyright (C) 2022 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.
*/
import androidx.build.Publish
import androidx.build.SupportConfigKt
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("kotlin-android")
}
android {
sourceSets {
test.resources {
srcDirs += SupportConfigKt
.getPrebuiltsRoot(project).toPath()
.resolve(
"androidx/internal/androidx/tracing/tracing-perfetto-binary/" +
"${androidx.LibraryVersions.TRACING_PERFETTO}"
).toFile()
}
}
}
dependencies {
api("androidx.annotation:annotation:1.3.0")
implementation(project(":tracing:tracing-perfetto-common"))
implementation(libs.kotlinStdlib)
androidTestImplementation(libs.testExtJunit)
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.truth)
androidTestImplementation(project(":tracing:tracing-perfetto-binary"))
testImplementation(libs.junit)
testImplementation(libs.kotlinStdlib)
testImplementation(libs.truth)
}
androidx {
name = "AndroidX Tracing: Perfetto SDK"
publish = Publish.SNAPSHOT_AND_RELEASE
mavenVersion = LibraryVersions.TRACING_PERFETTO
mavenGroup = LibraryGroups.TRACING
inceptionYear = "2022"
description = "AndroidX Tracing: Perfetto SDK"
}
android {
namespace "androidx.tracing.perfetto"
}