You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
665 B
32 lines
665 B
# Copyright 2018 The PDFium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("../../pdfium.gni")
|
|
|
|
assert(pdf_enable_xfa)
|
|
|
|
source_set("fxgraphics") {
|
|
sources = [
|
|
"cxfa_gecolor.cpp",
|
|
"cxfa_gecolor.h",
|
|
"cxfa_gepath.cpp",
|
|
"cxfa_gepath.h",
|
|
"cxfa_gepattern.cpp",
|
|
"cxfa_gepattern.h",
|
|
"cxfa_geshading.cpp",
|
|
"cxfa_geshading.h",
|
|
"cxfa_graphics.cpp",
|
|
"cxfa_graphics.h",
|
|
]
|
|
configs += [
|
|
"../../:pdfium_core_config",
|
|
"../:xfa_warnings",
|
|
]
|
|
deps = [
|
|
"../../core/fxcrt",
|
|
"../../core/fxge",
|
|
]
|
|
visibility = [ "../../*" ]
|
|
}
|