Buck: Add aliases for popular browsers

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
This commit is contained in:
David Ostrovsky 2014-03-26 18:15:27 -07:00 committed by David Pursehouse
parent 3aacecced0
commit 21e231cd2b
2 changed files with 4 additions and 0 deletions

View File

@ -3,9 +3,12 @@
api = //:api
api_deploy = //tools/maven:deploy
api_install = //tools/maven:install
chrome = //:chrome
docs = //Documentation:html
firefox = //:firefox
gerrit = //:gerrit
release = //:release
safari = //:safari
withdocs = //:withdocs
[buildfile]

1
BUCK
View File

@ -3,6 +3,7 @@ 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'])