blob: 438046cf207d9834ce73140971baf5bb51bda2fc [file] [log] [blame]
Lei Zhangfaa51452018-10-12 18:33:51 +00001# 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("//build/config/jumbo.gni")
6import("../../pdfium.gni")
7
8assert(pdf_enable_xfa)
9
10jumbo_source_set("fxgraphics") {
11 sources = [
12 "cxfa_gecolor.cpp",
13 "cxfa_gecolor.h",
14 "cxfa_gepath.cpp",
15 "cxfa_gepath.h",
16 "cxfa_gepattern.cpp",
17 "cxfa_gepattern.h",
18 "cxfa_geshading.cpp",
19 "cxfa_geshading.h",
20 "cxfa_graphics.cpp",
21 "cxfa_graphics.h",
22 ]
23 configs += [
24 "../../:pdfium_core_config",
25 "../:xfa_warnings",
26 ]
Lei Zhang7239fe92018-10-15 17:10:58 +000027 deps = [
28 "../../core/fxcrt",
29 "../../core/fxge",
30 ]
Lei Zhangfaa51452018-10-12 18:33:51 +000031 visibility = [ "../../*" ]
32}