Fix Android CI

Summary:
This diff removes android x dependencies from: react/processing/BUCK

"react/processing" is a java library and it shouldn't have an Android dependency, the purpose of this diff is to fix the CI in RN OSS repository

Reviewed By: makovkastar

Differential Revision: D16247319

fbshipit-source-id: c488ad234c292e85f8fc117634a9f2e51f582e39
This commit is contained in:
David Vacca
2019-07-15 11:25:52 -07:00
committed by Facebook Github Bot
parent b329f994b5
commit 8997e9aa9c
2 changed files with 1 additions and 3 deletions
@@ -15,11 +15,9 @@ rn_java_annotation_processor(
rn_java_library(
name = "processing-lib",
srcs = glob(["*.java"]),
is_androidx = True,
source = "7",
target = "7",
deps = [
react_native_dep("third-party/android/androidx:annotation"),
react_native_dep("third-party/java/infer-annotations:infer-annotations"),
react_native_dep("third-party/java/javapoet:javapoet"),
react_native_dep("third-party/java/jsr-305:jsr-305"),
@@ -11,7 +11,6 @@ import static javax.lang.model.element.Modifier.PUBLIC;
import static javax.tools.Diagnostic.Kind.ERROR;
import static javax.tools.Diagnostic.Kind.WARNING;
import androidx.annotation.Nullable;
import com.facebook.infer.annotation.SuppressFieldNotInitialized;
import com.facebook.react.bridge.Dynamic;
import com.facebook.react.bridge.DynamicFromObject;
@@ -37,6 +36,7 @@ import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.annotation.Nullable;
import javax.annotation.processing.AbstractProcessor;
import javax.annotation.processing.Filer;
import javax.annotation.processing.Messager;