summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-prod (mdb) <android-build-team-robot@google.com>2020-04-09 15:16:47 +0000
committerandroid-build-prod (mdb) <android-build-team-robot@google.com>2020-04-09 15:16:47 +0000
commit045bb9229c12206e6dcb9903735c610e7119e794 (patch)
treedb31a479d1ec894a4ad553050ecf6c452bd811eb
parent1e065e80f602b2744754421a73215e953c4b6297 (diff)
parent42cb5981aa9ff7f8ccdb95d5d97607dded4ad4fe (diff)
downloadwebview_support_interfaces-045bb9229c12206e6dcb9903735c610e7119e794.tar.gz
Snap for 6363088 from 42cb5981aa9ff7f8ccdb95d5d97607dded4ad4fe to androidx-camerax-release
Change-Id: I2810ea575c1dfee476cc089d815b21360a7ae887
-rw-r--r--BUILD.gn6
-rw-r--r--build.gradle25
2 files changed, 2 insertions, 29 deletions
diff --git a/BUILD.gn b/BUILD.gn
index a6cc4b5..e3ed180 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -6,7 +6,7 @@ import("//build/config/android/config.gni")
import("//build/config/android/rules.gni")
android_library("boundary_interface_java") {
- java_files = [
+ sources = [
"src/org/chromium/support_lib_boundary/FeatureFlagHolderBoundaryInterface.java",
"src/org/chromium/support_lib_boundary/IsomorphicObjectBoundaryInterface.java",
"src/org/chromium/support_lib_boundary/JsReplyProxyBoundaryInterface.java",
@@ -41,9 +41,7 @@ android_library("boundary_interface_java") {
# build when we mirror this into AndroidX. We are only permitted to depend on
# core Android classes and other AndroidX classes (must be in the androidx.*
# package name).
- deps = [
- "//third_party/android_deps:androidx_annotation_annotation_java",
- ]
+ deps = [ "//third_party/android_deps:androidx_annotation_annotation_java" ]
# This is to verify the boundary interfaces compile and lint correctly against
# the minSdkVersion of the webkit support library module. As the minSdkVersion
diff --git a/build.gradle b/build.gradle
deleted file mode 100644
index 4fbc108..0000000
--- a/build.gradle
+++ /dev/null
@@ -1,25 +0,0 @@
-// 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']
- }
-}