From 749c14c24f7e8a838efc077a45ca7fe41db3e2ee Mon Sep 17 00:00:00 2001 From: caryclark Date: Thu, 19 May 2016 07:01:03 -0700 Subject: Remove agg from skia build This removes the last vestiges of antigrain from a Skia-specific build. R=dsinclair@chromium.org,tsepez@chromium.org,thestig@chromium.org,reed@google.com Review-Url: https://codereview.chromium.org/1998623002 --- BUILD.gn | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'BUILD.gn') diff --git a/BUILD.gn b/BUILD.gn index 5e538e0096..b1ecc04a32 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -647,12 +647,7 @@ static_library("fxcrt") { } static_library("fxge") { - deps = [ - "third_party:fx_agg", - ] sources = [ - "core/fxge/agg/fx_agg_driver.cpp", - "core/fxge/agg/fx_agg_driver.h", "core/fxge/android/fpf_skiafont.cpp", "core/fxge/android/fpf_skiafont.h", "core/fxge/android/fpf_skiafontmgr.cpp", @@ -714,7 +709,17 @@ static_library("fxge") { if (pdf_use_skia) { sources += [ "core/fxge/skia/fx_skia_device.cpp" ] - deps += [ "//skia" ] + deps = [ + "//skia", + ] + } else { + sources += [ + "core/fxge/agg/fx_agg_driver.cpp", + "core/fxge/agg/fx_agg_driver.h", + ] + deps = [ + "third_party:fx_agg", + ] } if (is_win) { -- cgit v1.2.3