Chromium Code Reviews| Index: skia/BUILD.gn |
| diff --git a/skia/BUILD.gn b/skia/BUILD.gn |
| index d98763fc597a62d7ce2ccdc651e555bad49513b0..59bb891e75abb6548b23faa1ee4473db000ff99b 100644 |
| --- a/skia/BUILD.gn |
| +++ b/skia/BUILD.gn |
| @@ -372,6 +372,13 @@ component("skia") { |
| ] |
| } |
| + sources -= [ |
| + # This file is a stub for systems that use pthreads but aren't covered by |
| + # one of the more specific pthread files. We don't support any such |
| + # systems. |
| + "//third_party/skia/src/utils/SkThreadUtils_pthread_other.cpp", |
| + ] |
| + |
| if (!use_cairo) { |
| sources -= [ |
| "ext/bitmap_platform_device_cairo.cc", |
| @@ -404,6 +411,14 @@ component("skia") { |
| defines = [ "SKIA_IMPLEMENTATION=1" ] |
| } |
| + if (is_win) { |
| + configs -= [ |
| + # Some files Win32_LEAN_AND_MEAN and we want to aboid a duplicate |
|
scottmg
2014/05/26 19:00:59
this sentence is a bit messed up, and "avoid"
|
| + # definition warning. |
| + "//build/config/win:lean_and_mean", |
| + ] |
| + } |
| + |
| if (is_linux) { |
| configs += [ |
| "//build/config/linux:fontconfig", |