d383d114c4
According to the polygerrit "development story", any changes related to polymer components (aka bower_components) involves buck invocations: buck run //tools/js:bower2buck -- -o /tmp/newbuck That why it doesn't really make sense to try to optimize for this use case and to refresh polymer components in running container. This only makes polygerrit development unnecessary slow. We are getting the main use case to refresh the polygerrit sources in running container for granted due to mounting the PolyGerritUiServlet to the source path. Remove bower components rebuild filter and store zip file system in bower component own servlet instead of leaking it to GerritLauncher instance. Eclipse project generation depends now also on polymer components. Test Plan: * Run: buck build polygerrit && \ java -jar buck-out/gen/polygerrit/polygerrit.war daemon \ --polygerrit-dev -d ../gerrit_testsite * Change polygerrit sources, refresh the browser window and observe that the changes are reflected and that there is no delay for unnecessary `buck build //polygerrit-ui:polygerrit_components` invocations, every time browser window is refreshed. Change-Id: If86bbbe14b9ddf0fa5001b2bbb9a39629e9b383f
32 lines
959 B
Python
32 lines
959 B
Python
include_defs('//tools/build.defs')
|
|
|
|
java_library(
|
|
name = 'classpath',
|
|
deps = LIBS + PGMLIBS + [
|
|
'//gerrit-acceptance-tests:lib',
|
|
'//gerrit-gpg:gpg_tests',
|
|
'//gerrit-gwtdebug:gwtdebug',
|
|
'//gerrit-gwtui:ui_module',
|
|
'//gerrit-gwtui:ui_tests',
|
|
'//gerrit-httpd:httpd_tests',
|
|
'//gerrit-main:main_lib',
|
|
'//gerrit-patch-jgit:jgit_patch_tests',
|
|
'//gerrit-plugin-gwtui:gwtui-api-lib',
|
|
'//gerrit-reviewdb:client_tests',
|
|
'//gerrit-server:server',
|
|
'//gerrit-server:server_tests',
|
|
'//lib/asciidoctor:asciidoc_lib',
|
|
'//lib/asciidoctor:doc_indexer_lib',
|
|
'//lib/auto:auto-value',
|
|
'//lib/bouncycastle:bcprov',
|
|
'//lib/bouncycastle:bcpg',
|
|
'//lib/bouncycastle:bcpkix',
|
|
'//lib/gwt:javax-validation',
|
|
'//lib/gwt:javax-validation_src',
|
|
'//lib/jetty:servlets',
|
|
'//lib/prolog:compiler_lib',
|
|
'//polygerrit-ui:polygerrit_components',
|
|
'//Documentation:index_lib',
|
|
] + scan_plugins(),
|
|
)
|