--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev...@chromium.org.
This is still affecting tryservers. If you see the compile error on your tryjobs you can force a clobber with "--clobber":
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
--
Outages like this deserve a post-mortem.A much better solution for this type of failure is to immediately roll out the affecting change and then only land it again when the build system has been taught to cope. In this situation it sounds like we could have added a script for gyp to call as part of the build to just delete the header from the old location.
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
Can we include blink_resources.h relative to gen/? Like#include "blink/public/resources/grit/blink_resources.h"instead of#include "grit/blink_resources.h"Why do we have multiple include paths for generated files?
Can we include blink_resources.h relative to gen/? Like#include "blink/public/resources/grit/blink_resources.h"instead of#include "grit/blink_resources.h"
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev...@chromium.org.
On Wed, Aug 6, 2014 at 4:49 PM, Nico Weber <tha...@chromium.org> wrote:
> And this time, if you're getting lots of
>
> ../../content/child/blink_platform_impl.cc:757:17: error: use of undeclared
> identifier 'IDR_UASTYLE_HTML_CSS'
> { "html.css", IDR_UASTYLE_HTML_CSS, ui::SCALE_FACTOR_NONE },
> ^
> ../../content/child/blink_platform_impl.cc:758:19: error: use of undeclared
> identifier 'IDR_UASTYLE_QUIRKS_CSS'
> { "quirks.css", IDR_UASTYLE_QUIRKS_CSS, ui::SCALE_FACTOR_NONE },
> ^
> ../../content/child/blink_platform_impl.cc:759:24: error: use of undeclared
> identifier 'IDR_UASTYLE_VIEW_SOURCE_CSS'
> { "view-source.css", IDR_UASTYLE_VIEW_SOURCE_CSS, ui::SCALE_FACTOR_NONE },
> ^
> ../../content/child/blink_platform_impl.cc:760:26: error: use of undeclared
> identifier 'IDR_UASTYLE_THEME_CHROMIUM_CSS'
> { "themeChromium.css", IDR_UASTYLE_THEME_CHROMIUM_CSS,
> ^
>
> the file to remove is
> out/{Release,Debug}/gen/blink/public/resources/grit/blink_resources.h
So... what should I do if removing
out/Debug/gen/blink/public/resources/grit/blink_resources.h did not
solve my build error?
You can start with the template on the new postmortem site (https://sites.google.com/a/chromium.org/dev/developers/postmortems), and once it is complete, please add it to the list on that page, and send it out to chromium-dev.