summaryrefslogtreecommitdiff
path: root/fpdfsdk/formfiller/BUILD.gn
blob: a16ee512ec5b9036e2674fdeb341162a5a28f354 (plain)
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
# 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("formfiller") {
  sources = [
    "cba_fontmap.cpp",
    "cba_fontmap.h",
    "cffl_button.cpp",
    "cffl_button.h",
    "cffl_checkbox.cpp",
    "cffl_checkbox.h",
    "cffl_combobox.cpp",
    "cffl_combobox.h",
    "cffl_formfiller.cpp",
    "cffl_formfiller.h",
    "cffl_interactiveformfiller.cpp",
    "cffl_interactiveformfiller.h",
    "cffl_listbox.cpp",
    "cffl_listbox.h",
    "cffl_pushbutton.cpp",
    "cffl_pushbutton.h",
    "cffl_radiobutton.cpp",
    "cffl_radiobutton.h",
    "cffl_textfield.cpp",
    "cffl_textfield.h",
    "cffl_textobject.cpp",
    "cffl_textobject.h",
  ]
  configs += [ "../../:pdfium_core_config" ]
  deps = [
    "../../:pdfium_public_headers",
    "../../core/fpdfapi/font",
    "../../core/fpdfapi/page",
    "../../core/fpdfapi/parser",
    "../../core/fpdfdoc",
    "../../core/fxcrt",
    "../../core/fxge",
    "../pwl",
  ]
  allow_circular_includes_from = [ "../pwl" ]
  visibility = [ "../../*" ]
}