1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# 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("//build/config/jumbo.gni")
import("../../pdfium.gni")
jumbo_source_set("fpdfdoc") {
sources = [
"cline.cpp",
"cline.h",
"cpdf_aaction.cpp",
"cpdf_aaction.h",
"cpdf_action.cpp",
"cpdf_action.h",
"cpdf_actionfields.cpp",
"cpdf_actionfields.h",
"cpdf_annot.cpp",
"cpdf_annot.h",
"cpdf_annotlist.cpp",
"cpdf_annotlist.h",
"cpdf_apsettings.cpp",
"cpdf_apsettings.h",
"cpdf_bookmark.cpp",
"cpdf_bookmark.h",
"cpdf_bookmarktree.cpp",
"cpdf_bookmarktree.h",
"cpdf_defaultappearance.cpp",
"cpdf_defaultappearance.h",
"cpdf_dest.cpp",
"cpdf_dest.h",
"cpdf_docjsactions.cpp",
"cpdf_docjsactions.h",
"cpdf_filespec.cpp",
"cpdf_filespec.h",
"cpdf_formcontrol.cpp",
"cpdf_formcontrol.h",
"cpdf_formfield.cpp",
"cpdf_formfield.h",
"cpdf_iconfit.cpp",
"cpdf_iconfit.h",
"cpdf_interactiveform.cpp",
"cpdf_interactiveform.h",
"cpdf_link.cpp",
"cpdf_link.h",
"cpdf_linklist.cpp",
"cpdf_linklist.h",
"cpdf_metadata.cpp",
"cpdf_metadata.h",
"cpdf_nametree.cpp",
"cpdf_nametree.h",
"cpdf_numbertree.cpp",
"cpdf_numbertree.h",
"cpdf_occontext.cpp",
"cpdf_occontext.h",
"cpdf_pagelabel.cpp",
"cpdf_pagelabel.h",
"cpdf_structelement.cpp",
"cpdf_structelement.h",
"cpdf_structtree.cpp",
"cpdf_structtree.h",
"cpdf_variabletext.cpp",
"cpdf_variabletext.h",
"cpdf_viewerpreferences.cpp",
"cpdf_viewerpreferences.h",
"cpvt_floatrect.h",
"cpvt_fontmap.cpp",
"cpvt_fontmap.h",
"cpvt_generateap.cpp",
"cpvt_generateap.h",
"cpvt_line.h",
"cpvt_lineinfo.h",
"cpvt_word.h",
"cpvt_wordinfo.cpp",
"cpvt_wordinfo.h",
"cpvt_wordplace.h",
"cpvt_wordrange.h",
"csection.cpp",
"csection.h",
"ctypeset.cpp",
"ctypeset.h",
"ipdf_formnotify.h",
"ipvt_fontmap.h",
]
configs += [ "../../:pdfium_core_config" ]
deps = [
"../fpdfapi/font",
"../fpdfapi/page",
"../fpdfapi/parser",
"../fpdfapi/render",
"../fxcrt",
"../fxge",
]
allow_circular_includes_from = [
"../fxge",
"../fpdfapi/parser",
"../fpdfapi/page",
"../fpdfapi/render",
]
visibility = [ "../../*" ]
}
|