summaryrefslogtreecommitdiffstats
path: root/components/webui_generator
Commit message (Collapse)AuthorAgeFilesLines
* Use variadic template for screen handler's AddCallback.xiyuan2015-03-261-12/+4
| | | | | | | | BUG=none Review URL: https://codereview.chromium.org/1038003002 Cr-Commit-Position: refs/heads/master@{#322444}
* Speculative fix for a GYP error - delete a duplicate key in wug.gypi.thestig2015-03-051-1/+0
| | | | | | | | | | | | | | | Chromium OS Builder (valgrind) fails with: gyp: Key 'export_h' repeated at level 2 with key path 'variables' while reading wug.gypi. But I can't repro the error locally, thus the fix is speculative. TBR=dzhioev@chromium.org Review URL: https://codereview.chromium.org/981723006 Cr-Commit-Position: refs/heads/master@{#319304}
* WebUI generator GN build file fixed.dzhioev2015-03-041-2/+2
| | | | | | | | | | | | In case when GN output dir is inside src/, GN uses pathes relative to src/ directory that start with // (//out/Release/gen). But python interprets such pathes as relative to /. BUG=459230 Review URL: https://codereview.chromium.org/973873003 Cr-Commit-Position: refs/heads/master@{#319058}
* WUG (Web UI generator) is an utility toolkit whichdzhioev2015-03-0326-0/+2383
facilitates WebUI creation. All parts of WUG are implemented: * Base classes for view (View) and view-model (ViewModel) * WebUIView -- specialization of View for use in WebUI. * View's CC, HTML and JS code generator * Templates for GYP and GN which help to generate code and produce components from generated code. Tests to follow. TEST=none TBR=avi@chromium.org,mark@chromium.org BUG=459230 Review URL: https://codereview.chromium.org/928163002 Cr-Commit-Position: refs/heads/master@{#318884}