
genrule() no longer supports running commands run only for the side-effect with no output file. Actions like download_sources or eclipse need to be handled using Python scripts executed from the user's shell, otherwise Buck fails if caching is enabled. Change-Id: I361fc20675f211e15e4ab7942ef52778d0a615c2
16 lines
394 B
Python
16 lines
394 B
Python
include_defs('//tools/build.defs')
|
|
|
|
java_library(
|
|
name = 'classpath',
|
|
deps = LIBS + PGMLIBS + [
|
|
'//gerrit-acceptance-tests:lib',
|
|
'//gerrit-gwtdebug:gwtdebug',
|
|
'//gerrit-gwtui:ui_module',
|
|
'//gerrit-gwtui:ui_tests',
|
|
'//gerrit-httpd:httpd_tests',
|
|
'//gerrit-main:main_lib',
|
|
'//gerrit-server:server__compile',
|
|
'//lib/prolog:compiler_lib',
|
|
] + scan_plugins(),
|
|
)
|