You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RFC: Add common 3rd party warnings config target (project-chip#7959)
There is an idiom for relaxing warnings for third party in GN:
configs -= [ "//buildsys/1st_party_warnings" ]
configs += [ "//buildsys/3rd_party_warnings" ]
The trouble is that "//buildsys/1st_party_warnings" is an object from
the core build system that we have to name which introduces some
coupling (e.g., projects may have the same pattern with different target
names and this would not work). To minimize this coupling, indirect this
through the build_overrides directory where the top level project can
provide suitable targets (or not, if the defaults already work).
This is provided for discussion in issue project-chip#7935
0 commit comments