That diagram isn't particularly readable. This one is much, much easier on the eyes:

... and also correctly places the stage at which normals are interpolated: before the fragment shader or raster operations, which finalizes the fragments. I think in terms of your diagram, this is the area labelled 'set-up'.
For flat shading, normals are not interpolated across the surface of the polygon. However, they will still be passed through the interpolation stage so that the appropriate normal for a fragment can be determined, where more than one may be available. So, the normals are determined in the rasterization and interpolation however the actual colouring and lighting are determined by the fragment shader. This is the modern approach: In a fixed pipeline (without a fragment shader), it would all be done by the rasterizer.