diff options
author | Lei Zhang <thestig@chromium.org> | 2018-10-12 18:39:56 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-10-12 18:39:56 +0000 |
commit | dcab8cffd0b8368cd2aae7aadc6b0b437166f89f (patch) | |
tree | 5616f8323d98ab148e368e9820b8326f38c51668 /fpdfsdk/formfiller | |
parent | a7dec32a82a46cf320838bec910781ce525035bc (diff) | |
download | pdfium-dcab8cffd0b8368cd2aae7aadc6b0b437166f89f.tar.xz |
Split fpdfsdk build rules into various BUILD.gn files in fpdfsdk.
Change-Id: I3500ab9a9bbf0ec983e02dd4b739c9b199d71e21
Reviewed-on: https://pdfium-review.googlesource.com/c/43943
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fpdfsdk/formfiller')
-rw-r--r-- | fpdfsdk/formfiller/BUILD.gn | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/fpdfsdk/formfiller/BUILD.gn b/fpdfsdk/formfiller/BUILD.gn new file mode 100644 index 0000000000..fe5ba5ed2b --- /dev/null +++ b/fpdfsdk/formfiller/BUILD.gn @@ -0,0 +1,38 @@ +# 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 = [ + "../../:fxcrt", + ] + visibility = [ "../../*" ] +} |