Commit d0e2a075 authored by Hazem Ashmawy's avatar Hazem Ashmawy Committed by Commit Bot

AW: Remove build.gradle file from boundry_interfaces

This gradle file was introduced for an effort to compile
boundry_interfaces independently from androidx.webkit source code
in AndroidX repo. However, we are not proceeding with this approach
so this file isn't needed anymore.

Bug: b/140178227
Change-Id: Ie579cd7fac0498b27b6653ad56647756fea17476
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1994281
Commit-Queue: Hazem Ashmawy <hazems@chromium.org>
Auto-Submit: Hazem Ashmawy <hazems@chromium.org>
Reviewed-by: default avatarNate Fischer <ntfschr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#730030}
parent d9584adf
// 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.SdkHelperKt
import androidx.build.SupportConfig
plugins {
id('java-library')
}
dependencies {
api("androidx.annotation:annotation:1.1.0")
implementation fileTree(dir: "${SdkHelperKt.getSdkPath(project.rootDir)}/platforms/$SupportConfig.COMPILE_SDK_VERSION/",
include: "android.jar")
}
sourceSets {
main {
java.srcDirs = ['src']
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment