[chromium-dev] Re: F5 Debug process

2009-07-03 Thread PhistucK
At least in Visual Studio 2005, you can right click on the solution and in Configuration Options (or something like that), you can select what to build and what not to build.It does speed up the compiling process by at least half (for me). It still, generally, takes a lot of time. ☆PhistucK On

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread Mohamed Mansour
It depends on the machine you have. CPU power. HD etc. ... If you have incremental build turned on /MP it will take less time to compile as well. -- Mohamed Mansour On Fri, Jul 3, 2009 at 12:26 PM, PhistucK phist...@gmail.com wrote: At least in Visual Studio 2005, you can right click on the

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread Finnur Thorarinsson
I had a similar problem on VS 2005, maybe it is the same as yours. Turned out VS was set to build everything as opposed to just building what the project depended on. Not sure how to do it in VS2008, but in VS 2005, under Tools \ Options, go to: Projects and Solutions \ Build and Run Make sure

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread Peter Kasting
On Fri, Jul 3, 2009 at 9:32 AM, Mohamed Mansour m...@chromium.org wrote: It depends on the machine you have. CPU power. HD etc. ... If you have incremental build turned on /MP it will take less time to compile as well. Note: /MP is multiprocess build, not incremental build. PK

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread PhistucK
Where exactly do I add /MP (using Visual Basic Professional 2005)?(I know extremely little about the whole environment..) Thank you. ☆PhistucK On Fri, Jul 3, 2009 at 20:08, Peter Kasting pkast...@chromium.org wrote: On Fri, Jul 3, 2009 at 9:32 AM, Mohamed Mansour m...@chromium.org wrote:

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread Thiago Farina
I was having exactly this problem. It this configuration now when I click F5 (with chrome as my startup project) they build only the project and dependencies, no more the projects tests. Thanks for your hint, it was exactly what I was looking for to avoid the compilation of project tests(that

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread Finnur Thorarinsson
Glad to hear its fixed.-F On Fri, Jul 3, 2009 at 10:40, Thiago Farina thiago.far...@gmail.com wrote: I was having exactly this problem. With this configuration, now when I click F5 (with chrome as my startup project) VS build only the project and dependencies, no more the projects tests.

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread Jeremy Orlow
Actually, there are a couple spots to edit: http://codereview.chromium.org/155057 -- maybe more Is it time to make this default yet? It speeds up the build considerably and almost everyone uses it now. It does make things a bit less deterministic, but you can always clobber build if something

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread Tommi
thanks jeremy - applied that cl and got my cpus pegged even more ;) On Fri, Jul 3, 2009 at 2:10 PM, Jeremy Orlow jor...@chromium.org wrote: Actually, there are a couple spots to edit: http://codereview.chromium.org/155057 -- maybe more Is it time to make this default yet? It speeds up the

[chromium-dev] Re: F5 Debug process

2009-07-03 Thread Mohamed Mansour
Would be nice if we can make multiprocess build (/MP) integrated with gyp. Don't know how that could be done. -- Mohamed Mansour On Fri, Jul 3, 2009 at 2:10 PM, Jeremy Orlow jor...@chromium.org wrote: Actually, there are a couple spots to edit: http://codereview.chromium.org/155057 -- maybe