diff options
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/BUILD.gn | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/third_party/BUILD.gn b/third_party/BUILD.gn index 44d5e75831..8e143aa348 100644 --- a/third_party/BUILD.gn +++ b/third_party/BUILD.gn @@ -94,14 +94,15 @@ source_set("fx_agg") { ] } -source_set("fx_lcms2") { - config("fx_lcms2_warnings") { - if (is_clang) { - # cmslut.cc is sloppy with aggregate initialization. Version 2.7 of this - # library doesn't appear to have this problem. - cflags = [ "-Wno-missing-braces" ] - } +config("fx_lcms2_warnings") { + if (is_clang) { + # cmslut.cc is sloppy with aggregate initialization. Version 2.7 of this + # library doesn't appear to have this problem. + cflags = [ "-Wno-missing-braces" ] } +} + +source_set("fx_lcms2") { configs -= [ "//build/config/compiler:chromium_code" ] configs += [ "//build/config/compiler:no_chromium_code", |