| Auto-Submit | +1 |
| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
inputs += [ "resources/default_200_percent/mediaremoting_cast.png" ]Why isn't this needed on Android?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
inputs += [ "resources/default_200_percent/mediaremoting_cast.png" ]Why isn't this needed on Android?
GRIT doesn't enable `scale_factors=2x` for Android
https://source.chromium.org/chromium/chromium/src/+/main:tools/grit/grit_args.gni;l=42;drc=f720f899799643250e5c53c96a434147582b814f
so `flattenhtml` automatically strips 2x resources from `image-set()` during Android builds. Including it in `inputs` for Android would cause the `--assert-input-file-list` check to fail since the file isn't actually read.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
inputs += [ "resources/default_200_percent/mediaremoting_cast.png" ]Takuto IkutaWhy isn't this needed on Android?
GRIT doesn't enable `scale_factors=2x` for Android
https://source.chromium.org/chromium/chromium/src/+/main:tools/grit/grit_args.gni;l=42;drc=f720f899799643250e5c53c96a434147582b814f
so `flattenhtml` automatically strips 2x resources from `image-set()` during Android builds. Including it in `inputs` for Android would cause the `--assert-input-file-list` check to fail since the file isn't actually read.
Acknowledged
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
blink: Add inputs for grit actions
Goal of this CL is to make the grit action runs on remote worker so that
we can reduce local resource usage and share build cache between
bots/developers. But we need to tell which files are read by grit
actions to siso from build system layer.
Although we need to specify inputs both in grit and BUILD.gn, I'll add a
check to detect which files are missed or overspecified in grit.py and
we can now rely on AI agent to fix them easily.
Extracted from https://crrev.com/c/8085243.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |