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# Aliases from guava libraries to //third_party/java/guava. 17 18package(default_visibility = ["//:src"]) 19 20alias( 21 name = "annotations", 22 actual = "@google_bazel_common//third_party/java/guava", 23) 24 25alias( 26 name = "base", 27 actual = "@google_bazel_common//third_party/java/guava", 28) 29 30alias( 31 name = "cache", 32 actual = "@google_bazel_common//third_party/java/guava", 33) 34 35alias( 36 name = "collect", 37 actual = "@google_bazel_common//third_party/java/guava", 38) 39 40alias( 41 name = "graph", 42 actual = "@google_bazel_common//third_party/java/guava", 43) 44 45alias( 46 name = "io", 47 actual = "@google_bazel_common//third_party/java/guava", 48) 49 50alias( 51 name = "concurrent", 52 actual = "@google_bazel_common//third_party/java/guava", 53) 54 55alias( 56 name = "base-android", 57 actual = "@maven//:com_google_guava_guava", 58) 59 60alias( 61 name = "collect-android", 62 actual = "@maven//:com_google_guava_guava", 63) 64 65alias( 66 name = "concurrent-android", 67 actual = "@maven//:com_google_guava_guava", 68) 69