
This change allows to compile optimized GWT version for popular brwosers: buck build chrome buck build firefox buck build safari And no: IE is not among them: buck build ie BUILD FAILED: No directory ie when resolving target //ie:ie Change-Id: I4f888bd114928555967022c5586e2b3ef16396b0
41 lines
1.0 KiB
Python
41 lines
1.0 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 = 'safari', ui = 'ui_safari')
|
|
gerrit_war(name = 'withdocs', docs = True)
|
|
gerrit_war(name = 'release', docs = True, context = ['//plugins:core.zip'])
|
|
|
|
API_DEPS = [
|
|
'//gerrit-extension-api:extension-api',
|
|
'//gerrit-extension-api:extension-api-src',
|
|
'//gerrit-extension-api:extension-api-javadoc',
|
|
'//gerrit-plugin-api:plugin-api',
|
|
'//gerrit-plugin-api:plugin-api-src',
|
|
'//gerrit-plugin-api:plugin-api-javadoc',
|
|
'//gerrit-plugin-gwtui:gwtui-api',
|
|
'//gerrit-plugin-gwtui:gwtui-api-src',
|
|
'//gerrit-plugin-gwtui:gwtui-api-javadoc',
|
|
]
|
|
|
|
genrule(
|
|
name = 'api',
|
|
cmd = ';'.join(
|
|
['cd $TMP'] +
|
|
['ln -s $(location %s) .' % n for n in API_DEPS] +
|
|
['zip -q0 $OUT *']),
|
|
deps = API_DEPS,
|
|
out = 'api.zip',
|
|
)
|
|
|
|
genrule(
|
|
name = 'all',
|
|
cmd = 'echo done >$OUT',
|
|
deps = [
|
|
':api',
|
|
':release',
|
|
],
|
|
out = '__fake.all__',
|
|
)
|