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("css") { 10 sources = [ 11 "cfx_css.h", 12 "cfx_csscolorvalue.cpp", 13 "cfx_csscolorvalue.h", 14 "cfx_csscomputedstyle.cpp", 15 "cfx_csscomputedstyle.h", 16 "cfx_csscustomproperty.cpp", 17 "cfx_csscustomproperty.h", 18 "cfx_cssdata.cpp", 19 "cfx_cssdata.h", 20 "cfx_cssdeclaration.cpp", 21 "cfx_cssdeclaration.h", 22 "cfx_cssenumvalue.cpp", 23 "cfx_cssenumvalue.h", 24 "cfx_cssexttextbuf.cpp", 25 "cfx_cssexttextbuf.h", 26 "cfx_cssnumbervalue.cpp", 27 "cfx_cssnumbervalue.h", 28 "cfx_csspropertyholder.cpp", 29 "cfx_csspropertyholder.h", 30 "cfx_cssrulecollection.cpp", 31 "cfx_cssrulecollection.h", 32 "cfx_cssselector.cpp", 33 "cfx_cssselector.h", 34 "cfx_cssstringvalue.cpp", 35 "cfx_cssstringvalue.h", 36 "cfx_cssstylerule.cpp", 37 "cfx_cssstylerule.h", 38 "cfx_cssstyleselector.cpp", 39 "cfx_cssstyleselector.h", 40 "cfx_cssstylesheet.cpp", 41 "cfx_cssstylesheet.h", 42 "cfx_csssyntaxparser.cpp", 43 "cfx_csssyntaxparser.h", 44 "cfx_csstextbuf.cpp", 45 "cfx_csstextbuf.h", 46 "cfx_cssvalue.cpp", 47 "cfx_cssvalue.h", 48 "cfx_cssvaluelist.cpp", 49 "cfx_cssvaluelist.h", 50 "cfx_cssvaluelistparser.cpp", 51 "cfx_cssvaluelistparser.h", 52 ] 53 deps = [ 54 "../", 55 "../../fxge", 56 ] 57 configs += [ "../../../:pdfium_core_config" ] 58 visibility = [ "../../../*" ] 59} 60