/Daniel
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe: http://groups.google.com/a/chromium.org/group/chromium-dev
Last I heard ninja still had issues with properly embedding Windows manifests in generated binaries, was this addressed?
Yes, this was part of crbug.com/326030.
You don't need to set incremental_chrome_dll=1 or chromium_win_pch=1, they're on by default when it makes sense.
Manifest embedding is controlled by https://code.google.com/p/chromium/codesearch#search/&q=win_use_external_manifest&sq=package:chromium&type=cs . Previously, embedding manifests broke incremental linking so it was off for debug/dev builds, but that should no longer be an issue after https://code.google.com/p/gyp/source/detail?r=1813 . So, we can probably move to all-embedded now if that's useful.
If you haven't gotten on the ninja train yet, use "ninja -C out\Release chrome" to build. The binary ends up in out\Release.If you build "ninja -C out\Debug chrome" instead, you can use "devenv.com /debugexe out\Debug\chrome.exe" to use Visual Studio to debug.
What are your gyp defines?
--
Could you try running gclient runhooks from cmd rather than cygwin?
--
--