gerrit/gerrit-gwtui/BUCK
David Pursehouse d7549eb8b5 Merge branch 'stable-2.13'
* stable-2.13:
  Diffy should use the unported CC-BY 3.0 license
  Clarify that the CC-BY 3.0 license is the unported version
  Synchronize license for silk icons
  Add bin folder to buck ignore

Change-Id: I4d3d76d954c9229d8868c0c9cb7fe1b184de4724
2016-09-21 11:35:53 +02:00

67 lines
1.5 KiB
Python

include_defs('//gerrit-gwtui/gwt.defs')
include_defs('//tools/gwt-constants.defs')
DEPS = GWT_TRANSITIVE_DEPS + [
'//gerrit-gwtexpui:CSS',
'//lib:gwtjsonrpc',
'//lib/gwt:dev',
]
gwt_genrule(MODULE, DEPS)
gwt_genrule(MODULE, DEPS, '_r')
gwt_user_agent_permutations(
name = 'ui',
module_name = 'gerrit_ui',
modules = [MODULE],
module_deps = [':ui_module'],
deps = DEPS,
visibility = ['//:'],
)
def gen_ui_module(name, suffix = ""):
gwt_module(
name = name + suffix,
srcs = glob(['src/main/java/**/*.java']),
gwt_xml = 'src/main/java/%s.gwt.xml' % MODULE.replace('.', '/'),
resources = glob(['src/main/java/**/*']),
deps = [
':silk_icons',
'//gerrit-gwtui-common:diffy_logo',
'//gerrit-gwtui-common:client',
'//gerrit-gwtexpui:CSS',
'//lib/codemirror:codemirror' + suffix,
'//lib/gwt:user',
],
visibility = [
'//tools/eclipse:classpath',
'//Documentation:licenses.txt',
'//Documentation:js_licenses.txt',
],
)
gen_ui_module(name = 'ui_module')
gen_ui_module(name = 'ui_module', suffix = '_r')
java_library(
name = 'silk_icons',
deps = [
'//lib:LICENSE-silk_icons',
],
)
java_test(
name = 'ui_tests',
srcs = glob(['src/test/java/**/*.java']),
deps = [
':ui_module',
'//gerrit-common:client',
'//gerrit-extension-api:client',
'//lib:junit',
'//lib/gwt:dev',
'//lib/gwt:user',
],
vm_args = ['-Xmx512m'],
visibility = ['//tools/eclipse:classpath'],
)