Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(461)

Side by Side Diff: BUILD.gn

Issue 1809193002: Move fpdfsdk/include/formfiller to fpdfsdk/formfiller. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | fpdfsdk/formfiller/FFL_CBA_Fontmap.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build_overrides/v8.gni") 5 import("//build_overrides/v8.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("pdfium.gni") 7 import("pdfium.gni")
8 8
9 config("pdfium_config") { 9 config("pdfium_config") {
10 cflags = [] 10 cflags = []
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 ] 767 ]
768 configs += [ "//v8:external_startup_data" ] 768 configs += [ "//v8:external_startup_data" ]
769 } else { 769 } else {
770 sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ] 770 sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ]
771 } 771 }
772 configs += [ ":pdfium_config" ] 772 configs += [ ":pdfium_config" ]
773 } 773 }
774 774
775 static_library("formfiller") { 775 static_library("formfiller") {
776 sources = [ 776 sources = [
777 "fpdfsdk/formfiller/FFL_CBA_Fontmap.cpp", 777 "fpdfsdk/formfiller/cba_fontmap.cpp",
Tom Sepez 2016/03/17 20:01:53 There's got to be at least one header in fpdfsdk/f
778 "fpdfsdk/formfiller/FFL_CheckBox.cpp", 778 "fpdfsdk/formfiller/cba_fontmap.h",
779 "fpdfsdk/formfiller/FFL_ComboBox.cpp", 779 "fpdfsdk/formfiller/cffl_checkbox.cpp",
780 "fpdfsdk/formfiller/FFL_FormFiller.cpp", 780 "fpdfsdk/formfiller/cffl_checkbox.h",
781 "fpdfsdk/formfiller/FFL_IFormFiller.cpp", 781 "fpdfsdk/formfiller/cffl_combobox.cpp",
782 "fpdfsdk/formfiller/FFL_ListBox.cpp", 782 "fpdfsdk/formfiller/cffl_combobox.h",
783 "fpdfsdk/formfiller/FFL_PushButton.cpp", 783 "fpdfsdk/formfiller/cffl_formfiller.cpp",
784 "fpdfsdk/formfiller/FFL_RadioButton.cpp", 784 "fpdfsdk/formfiller/cffl_formfiller.h",
785 "fpdfsdk/formfiller/FFL_TextField.cpp", 785 "fpdfsdk/formfiller/cffl_iformfiller.cpp",
786 "fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h", 786 "fpdfsdk/formfiller/cffl_iformfiller.h",
787 "fpdfsdk/include/formfiller/FFL_CheckBox.h", 787 "fpdfsdk/formfiller/cffl_listbox.cpp",
788 "fpdfsdk/include/formfiller/FFL_ComboBox.h", 788 "fpdfsdk/formfiller/cffl_listbox.h",
789 "fpdfsdk/include/formfiller/FFL_FormFiller.h", 789 "fpdfsdk/formfiller/cffl_pushbutton.cpp",
790 "fpdfsdk/include/formfiller/FFL_IFormFiller.h", 790 "fpdfsdk/formfiller/cffl_pushbutton.h",
791 "fpdfsdk/include/formfiller/FFL_ListBox.h", 791 "fpdfsdk/formfiller/cffl_radiobutton.cpp",
792 "fpdfsdk/include/formfiller/FFL_PushButton.h", 792 "fpdfsdk/formfiller/cffl_radiobutton.h",
793 "fpdfsdk/include/formfiller/FFL_RadioButton.h", 793 "fpdfsdk/formfiller/cffl_textfield.cpp",
794 "fpdfsdk/include/formfiller/FFL_TextField.h", 794 "fpdfsdk/formfiller/cffl_textfield.h",
795 ] 795 ]
796 configs += [ ":pdfium_config" ] 796 configs += [ ":pdfium_config" ]
797 } 797 }
798 798
799 if (pdf_enable_xfa) { 799 if (pdf_enable_xfa) {
800 static_library("fpdfxfa") { 800 static_library("fpdfxfa") {
801 sources = [ 801 sources = [
802 "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp", 802 "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp",
803 "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp", 803 "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp",
804 "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp", 804 "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp",
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 "//v8:v8_libplatform", 1560 "//v8:v8_libplatform",
1561 ] 1561 ]
1562 include_dirs += [ 1562 include_dirs += [
1563 "//v8", 1563 "//v8",
1564 "//v8/include", 1564 "//v8/include",
1565 ] 1565 ]
1566 configs += [ "//v8:external_startup_data" ] 1566 configs += [ "//v8:external_startup_data" ]
1567 } 1567 }
1568 configs += [ ":pdfium_config" ] 1568 configs += [ ":pdfium_config" ]
1569 } 1569 }
OLDNEW
« no previous file with comments | « no previous file | fpdfsdk/formfiller/FFL_CBA_Fontmap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698