summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 300ab6cc78b2ac593eb816d90d99b6900f1fd954 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// This file is to build WebView boundary interfaces as part of the AndroidX webkit library.
// It is not meant to be used or build any targets in chromium project.

import androidx.build.SupportConfig

plugins {
    id('com.android.library')
}

dependencies {
    api("androidx.annotation:annotation:1.1.0")
}

android {
    // COMPILE_SDK_VERSION provided by AndroidX build scripts to build all AndroidX modules.
    compileSdkVersion SupportConfig.COMPILE_SDK_VERSION

    sourceSets {
        main.manifest.srcFile 'AndroidManifest.xml'
        main.java.srcDirs += ['src']
    }

    buildTypes.all {
        consumerProguardFiles 'proguard.flags'
    }
}