Bazel: Fix build

Iaab184501 renamed out to outs in genrule2, but missed to replace some
places.

Change-Id: I3e9673b95ab7e6ff8cd0feab42d5c7569297be54
This commit is contained in:
David Ostrovsky 2016-11-03 00:20:26 +01:00
parent b8a87b37b6
commit 76eac6f3fc
2 changed files with 7 additions and 7 deletions
gerrit-gwtui
lib/codemirror

@ -153,7 +153,7 @@ def gwt_genrule(suffix = ""):
'unzip -qo $$ROOT/$(location :%s);' % opt +
'mkdir -p $$(dirname $@);' +
'zip -qr $$ROOT/$@ .',
out = 'ui_optdbg' + suffix + '.zip',
outs = ['ui_optdbg' + suffix + '.zip'],
visibility = ['//visibility:public'],
)

@ -243,7 +243,7 @@ def pkg_cm():
'@codemirror_original//jar',
'@codemirror_minified//jar',
],
out = 'cm%s.js' % suffix,
outs = ['cm%s.js' % suffix],
)
# Main CSS
@ -261,7 +261,7 @@ def pkg_cm():
'@codemirror_original//jar',
'@codemirror_minified//jar',
],
out = 'cm%s.css' % suffix,
outs = ['cm%s.css' % suffix],
)
# Modes
@ -279,7 +279,7 @@ def pkg_cm():
'@codemirror_original//jar',
'@codemirror_minified//jar',
],
out = 'mode_%s%s.js' % (n, suffix),
outs = ['mode_%s%s.js' % (n, suffix)],
)
# Themes
@ -297,7 +297,7 @@ def pkg_cm():
'@codemirror_original//jar',
'@codemirror_minified//jar',
],
out = 'theme_%s%s.css' % (n, suffix),
outs = ['theme_%s%s.css' % (n, suffix)],
)
# Merge Addon bundled with diff-match-patch
@ -321,7 +321,7 @@ def pkg_cm():
'@codemirror_original//jar',
'@codemirror_minified//jar',
],
out = 'addon_merge%s.js' % suffix,
outs = ['addon_merge%s.js' % suffix],
)
# Jar packaging
@ -347,7 +347,7 @@ def pkg_cm():
] + [
':theme_%s%s' % (n, suffix) for n in CM_THEMES
],
outs = [ 'codemirror%s.jar' % suffix ],
outs = ['codemirror%s.jar' % suffix],
)
native.java_import(