diff options
Diffstat (limited to 'third_party/brotli/BUILD.gn')
-rw-r--r-- | third_party/brotli/BUILD.gn | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/brotli/BUILD.gn b/third_party/brotli/BUILD.gn index 8e1c111..2975f03 100644 --- a/third_party/brotli/BUILD.gn +++ b/third_party/brotli/BUILD.gn @@ -23,8 +23,17 @@ source_set("brotli") { "dec/types.h", ] + config("brotli_warnings") { + if (is_clang) { + # IncrementalCopyFastPath in decode.c can be unused. + # (The file looks very different upstream, this is probably no longer + # needed after rolling brotli the next time.) + cflags = [ "-Wno-unused-function" ] + } + } configs -= [ "//build/config/compiler:chromium_code" ] configs += [ "//build/config/compiler:no_chromium_code" ] + configs += [ ":brotli_warnings" ] # Since we are never debug brotli, freeze the optimizations to -O2. if (is_debug) { |