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 7source_set("formfiller") { 8 sources = [ 9 "cffl_button.cpp", 10 "cffl_button.h", 11 "cffl_checkbox.cpp", 12 "cffl_checkbox.h", 13 "cffl_combobox.cpp", 14 "cffl_combobox.h", 15 "cffl_formfiller.cpp", 16 "cffl_formfiller.h", 17 "cffl_interactiveformfiller.cpp", 18 "cffl_interactiveformfiller.h", 19 "cffl_listbox.cpp", 20 "cffl_listbox.h", 21 "cffl_pushbutton.cpp", 22 "cffl_pushbutton.h", 23 "cffl_radiobutton.cpp", 24 "cffl_radiobutton.h", 25 "cffl_textfield.cpp", 26 "cffl_textfield.h", 27 "cffl_textobject.cpp", 28 "cffl_textobject.h", 29 ] 30 configs += [ "../../:pdfium_core_config" ] 31 deps = [ 32 "../../:pdfium_public_headers", 33 "../../constants", 34 "../../core/fpdfapi/page", 35 "../../core/fpdfdoc", 36 "../../core/fxcrt", 37 "../../core/fxge", 38 "../pwl", 39 ] 40 visibility = [ "../../*" ] 41} 42