blob: 9e6c8fb5d4c3cf1a8728824be2c7c3c3229f3c34 [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 {
// Allows for testing that tracing-perfetto-binary in the prebuilts folder matches
// checksums in `PerfettoNative.Metadata`.
// Note that due to `TRACING_PERFETTO_REUSE_PREBUILTS_AAR` flag in
// `tracing:tracing-perfetto-binary`, `tracing:tracing-perfetto-binary` returns
// prebuilts AAR instead of being built from source code. See documentation for
// `TRACING_PERFETTO_REUSE_PREBUILTS_AAR` for more information.
// TODO(239041710): create a test that verifies that `tracing:tracing-perfetto-binary`
// matches its source code.
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
inceptionYear = "2022"
description = "AndroidX Tracing: Perfetto SDK"
}
android {
buildTypes.all {
consumerProguardFiles "proguard-rules.pro"
}
namespace "androidx.tracing.perfetto"
}