gerrit/BUCK
Shawn Pearce 82e66ee4e5 Move Eclipse related stuff into tools/eclipse
Try to reduce the size of the top-level BUCK file by moving
anything that has to do with Eclipse project generation and
classpath management into tools/eclipse.

Change-Id: Id779eaff4fe732908b28a8e3441004e364b59e21
2013-05-10 12:42:54 -07:00

54 lines
1.1 KiB
Python

include_defs('//tools/build.defs')
gerrit_war(name = 'gerrit')
gerrit_war(name = 'chrome', ui = 'ui_chrome')
gerrit_war(name = 'firefox', ui = 'ui_firefox')
gerrit_war(name = 'withdocs', context = DOCS)
gerrit_war(name = 'release', context = DOCS + ['//plugins:core.zip'])
genrule(
name = 'api',
cmd = 'echo',
srcs = [],
deps = [
':extension-api',
':plugin-api',
],
out = '__fake.api__',
)
java_binary(name = 'extension-api', deps = [':extension-lib'])
java_library(
name = 'extension-lib',
deps = [
'//gerrit-extension-api:api',
'//lib/guice:guice',
'//lib/guice:guice-servlet',
'//lib:servlet-api-3_0',
],
visibility = ['PUBLIC'],
)
java_binary(name = 'plugin-api', deps = [':plugin-lib'])
java_library(
name = 'plugin-lib',
deps = [
'//gerrit-server:server',
'//gerrit-sshd:sshd',
'//gerrit-httpd:httpd',
],
visibility = ['PUBLIC'],
)
genrule(
name = 'download',
cmd = 'buck build ' +
'$(buck audit classpath --dot //tools/eclipse:classpath' +
'| egrep \'^ "//lib/\''+
'| cut -d\\" -f2' +
'| sort | uniq)',
srcs = [],
deps = [],
out = '__fake.download__',
)