Fix Nomulus build by adding explicit error-prone dependency

The bazel build was failing with the following error message without it:

error: cannot access CanIgnoreReturnValue
  class file for com.google.errorprone.annotations.CanIgnoreReturnValue not found

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=143961684
This commit is contained in:
mcilwain 2017-01-09 07:47:28 -08:00 committed by Ben McIlwain
parent 01c7e1d38e
commit 3a5a7e030d

View file

@ -926,6 +926,9 @@ def com_google_guava():
"http://maven.ibiblio.org/maven2/com/google/guava/guava/20.0/guava-20.0.jar", "http://maven.ibiblio.org/maven2/com/google/guava/guava/20.0/guava-20.0.jar",
], ],
licenses = ["notice"], # The Apache Software License, Version 2.0 licenses = ["notice"], # The Apache Software License, Version 2.0
deps = [
"@com_google_errorprone_error_prone_annotations",
],
) )
def com_google_guava_testlib(): def com_google_guava_testlib():