1# Copyright 2018 The PDFium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("../../pdfium.gni") 6 7assert(pdf_enable_xfa) 8 9source_set("fxgraphics") { 10 sources = [ 11 "cxfa_gecolor.cpp", 12 "cxfa_gecolor.h", 13 "cxfa_gepath.cpp", 14 "cxfa_gepath.h", 15 "cxfa_gepattern.cpp", 16 "cxfa_gepattern.h", 17 "cxfa_geshading.cpp", 18 "cxfa_geshading.h", 19 "cxfa_graphics.cpp", 20 "cxfa_graphics.h", 21 ] 22 configs += [ 23 "../../:pdfium_core_config", 24 "../:xfa_warnings", 25 ] 26 deps = [ 27 "../../core/fxcrt", 28 "../../core/fxge", 29 ] 30 visibility = [ "../../*" ] 31} 32