Chromium Code Reviews
DescriptionScript to generate some or all systems
I find it essential to generate all the systems in one command.
I have several CLs in flight where I am changing dart:dom and dart:html
together.
My habit is to run:
./go.sh | tee Q
I can inspect file Q if needed.
If I know the IDL has not changed, it is 5x faster to run
./go.sh --cached
Systems can be picked:
./go.sh native,frog
The missing piece here is that files are generated under two directories
lib/dom/generated/
lib/html/generated/
I propose that we move all the generated files under one directory, so
that the following process gives a *complete* picture of the changes:
git checkout master
./go.sh
mv ../generated ../generated0
git checkout work
./go.sh
meld ../generated0 ../generated
Committed: https://code.google.com/p/dart/source/detail?r=7773
Patch Set 1 : #
Total comments: 2
Messages
Total messages: 7 (0 generated)
|
|||||||||||||||||||