blob: 76de44b92705d255041112473538c9bd650db8bc [file] [log] [blame]
Jakub Gielzak9155e242021-12-16 14:40:07 +00001/*
2 * Copyright (C) 2022 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jakub Gielzak9155e242021-12-16 14:40:07 +000017import androidx.build.Publish
18import androidx.build.RunApiTasks
19
20plugins {
21 id("AndroidXPlugin")
22 id("com.android.library")
23 id("kotlin-android")
24}
25
26dependencies {
Jakub Gielzak14880922021-12-31 16:32:06 +000027 implementation(libs.kotlinStdlib)
Jakub Gielzak9155e242021-12-16 14:40:07 +000028 androidTestImplementation(libs.testExtJunit)
Jakub Gielzak9155e242021-12-16 14:40:07 +000029 androidTestImplementation(libs.testRunner)
30 androidTestImplementation(libs.truth)
Jakub Gielzak8df50072022-01-13 23:07:07 +000031 androidTestImplementation(project(":tracing:tracing-perfetto-binary"))
Jakub Gielzak9155e242021-12-16 14:40:07 +000032}
33
34androidx {
35 name = "AndroidX Tracing: Perfetto SDK"
36 runApiTasks= new RunApiTasks.No("The API is still evolving")
37 publish = Publish.SNAPSHOT_AND_RELEASE
38 mavenVersion = LibraryVersions.TRACING_PERFETTO
39 mavenGroup = LibraryGroups.TRACING
40 inceptionYear = "2022"
41 description = "AndroidX Tracing: Perfetto SDK"
42}