Remove unnecessary reference to $SRCDIR in Buck genrules

In new buck version `$SRCDIR` is not necessary any more.  Buck now
always runs genrule relative to the $SRCDIR link forest.

Change-Id: Iee88bb575c7baa62bc087527927be5347a7f8f95
This commit is contained in:
David Ostrovsky
2014-03-26 11:48:26 -07:00
committed by Shawn Pearce
parent 1ec7f1b55f
commit 3f3e9ad20c
8 changed files with 18 additions and 13 deletions

View File

@@ -48,7 +48,7 @@ java_doc(
name = 'extension-api-javadoc',
title = 'Gerrit Review Extension API Documentation',
pkg = 'com.google.gerrit.extensions',
paths = ['$SRCDIR/src/main/java'],
paths = ['src/main/java'],
srcs = SRCS,
deps = [
'//lib/guice:javax-inject',