tools/nongoogle.bzl: separate out dependencies exempt from library compliance

Change-Id: I4b96d0cd5277371bb484118cb94c5f6e6b47c3b4
This commit is contained in:
Han-Wen Nienhuys
2019-04-17 17:19:55 +02:00
committed by David Ostrovsky
parent c8b633d5ce
commit f37b820c32
2 changed files with 16 additions and 6 deletions

14
tools/nongoogle.bzl Normal file
View File

@@ -0,0 +1,14 @@
load("//tools/bzl:maven_jar.bzl", "GERRIT", "MAVEN_LOCAL", "maven_jar")
def declare_nongoogle_deps():
"""loads dependencies that are not used at Google.
These are exempt from library compliance review.
"""
# Transitive dependency of commons-compress
maven_jar(
name = "tukaani-xz",
artifact = "org.tukaani:xz:1.6",
sha1 = "05b6f921f1810bdf90e25471968f741f87168b64",
)