[chromium-dev] Re: chrome-bisect.py: Mac Chrome Continuous Build Archive Bisecting

2009-06-06 Thread Evan Martin
Robert's script bisects over binaries, while git bisects over source. Since our tree takes so long to build, git bisect hasn't been too helpful in my experience. On Fri, Jun 5, 2009 at 10:56 PM, Jeremy Moskovichjer...@chromium.org wrote: That's great and I don't mean to belittle the awesomeness

[chromium-dev] Re: chrome-bisect.py: Mac Chrome Continuous Build Archive Bisecting

2009-06-06 Thread Eric Seidel
FYI, WebKit also has a script which bisects over binaries (nightly builds): http://trac.webkit.org/browser/trunk/WebKitTools/Scripts/bisect-builds Perhaps long term there is some code to share there (like maybe we can replace their perl script with our python script). ;) -eric On Fri, Jun 5,

[chromium-dev] Re: chrome-bisect.py: Mac Chrome Continuous Build Archive Bisecting

2009-06-06 Thread dhhwai
And also, the script uses this directory: BUILD_BASE_URL = http://build.chromium.org/buildbot/snapshots/ chromium-rel-mac which would seem to be the Mac Chrome *Snapshot* build archive, as opposed to Continuous builds. My expectation is that there will eventually also be a real Continuous

[chromium-dev] Re: chrome-bisect.py: Mac Chrome Continuous Build Archive Bisecting

2009-06-06 Thread Nicolas Sylvain
On Sat, Jun 6, 2009 at 10:41 AM, dhhwai dhh...@gmail.com wrote: And also, the script uses this directory: BUILD_BASE_URL = http://build.chromium.org/buildbot/snapshots/ chromium-rel-mac which would seem to be the Mac Chrome *Snapshot* build archive, as opposed to Continuous builds. My

[chromium-dev] build.chromium.org / buildbot downtime - June 7th

2009-06-06 Thread Nicolas Sylvain
Hello, Sunday June 7th from 10:30 AM PST to 1:30PM PST the buildbot and web server will be moved to a new location. During this time the tree will be closed and http://build.chromium.orgmight be inaccessible. Sorry for the inconvenience! Thank you, Nicolas

[chromium-dev] chrome always break in debugger when run under XCode

2009-06-06 Thread Nathan Summer
Hi, I compile chrome and run under XCode. But it breaks here, can you please tell me why? And what does BreakDebugger do? // static void DebugUtil::BreakDebugger() { #if defined(ARCH_CPU_ARM_FAMILY) asm(bkpt 0); #else asm(int3); #endif } Here is the stack trace: #0 0x0058c43f in

[chromium-dev] Chromium initial paint delay

2009-06-06 Thread Nathan Summer
Hi, Mozilla has initial paint delay feature, described here: http://kb.mozillazine.org/Nglayout.initialpaint.delay Basically, it delays paint the screen in order to speed up the overall page rendering time taken, but it also has incrementally rendering to give user initial values sooner. Can

[chromium-dev] Re: Chromium initial paint delay

2009-06-06 Thread Mike Belshe
Yes it does; this is part of Webkit. See HTMLTokenizer.cpp. Mike On Sat, Jun 6, 2009 at 8:35 PM, Nathan Summer nathan.charles.sum...@gmail.com wrote: Hi, Mozilla has initial paint delay feature, described here: http://kb.mozillazine.org/Nglayout.initialpaint.delay Basically, it delays