1# Copyright (C) 2017 The Dagger Authors. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15# Description: 16# Functional tests for Dagger that depend on Guava 17 18load("@rules_java//java:defs.bzl", "java_library") 19load("//:build_defs.bzl", "DOCLINT_HTML_AND_SYNTAX") 20load("//:test_defs.bzl", "GenJavaTests") 21 22package(default_visibility = ["//:src"]) 23 24java_library( 25 name = "optional_binding_components", 26 srcs = ["OptionalBindingComponents.java"], 27 javacopts = DOCLINT_HTML_AND_SYNTAX, 28 deps = [ 29 "//:dagger_with_compiler", 30 "//third_party/java/auto:value", 31 "//third_party/java/jsr305_annotations", 32 ], 33) 34 35# TODO(b/203233586): Replace with GenJavaTest 36GenJavaTests( 37 name = "OptionalBindingComponentsEmptyTest", 38 srcs = ["OptionalBindingComponentsEmptyTest.java"], 39 javacopts = DOCLINT_HTML_AND_SYNTAX, 40 require_jdk7_syntax = False, 41 test_only_deps = [ 42 ":optional_binding_components", 43 "//third_party/java/guava/base", 44 "//third_party/java/guava/collect", 45 "//third_party/java/junit", 46 "//third_party/java/truth", 47 ], 48 deps = [ 49 "//:dagger_with_compiler", 50 "//third_party/java/auto:value", 51 "//third_party/java/jsr305_annotations", 52 ], 53) 54 55# TODO(b/203233586): Replace with GenJavaTest 56GenJavaTests( 57 name = "OptionalBindingComponentsPresentTest", 58 srcs = ["OptionalBindingComponentsPresentTest.java"], 59 javacopts = DOCLINT_HTML_AND_SYNTAX, 60 require_jdk7_syntax = False, 61 test_only_deps = [ 62 ":optional_binding_components", 63 "//third_party/java/guava/base", 64 "//third_party/java/guava/collect", 65 "//third_party/java/junit", 66 "//third_party/java/truth", 67 ], 68 deps = [ 69 "//:dagger_with_compiler", 70 "//third_party/java/auto:value", 71 "//third_party/java/jsr305_annotations", 72 ], 73) 74