1# Copyright 2018 The PDFium Authors 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("graphics") { 10 sources = [ 11 "cfgas_gecolor.cpp", 12 "cfgas_gecolor.h", 13 "cfgas_gegraphics.cpp", 14 "cfgas_gegraphics.h", 15 "cfgas_gepath.cpp", 16 "cfgas_gepath.h", 17 "cfgas_gepattern.cpp", 18 "cfgas_gepattern.h", 19 "cfgas_geshading.cpp", 20 "cfgas_geshading.h", 21 ] 22 configs += [ 23 "../../../:pdfium_strict_config", 24 "../../../:pdfium_noshorten_config", 25 "../../:xfa_warnings", 26 ] 27 deps = [ 28 "../../../core/fxcrt", 29 "../../../core/fxge", 30 ] 31 visibility = [ "../../../*" ] 32} 33