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

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: Rebase to master 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 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
771 ] 771 ]
772 configs += [ "//v8:external_startup_data" ] 772 configs += [ "//v8:external_startup_data" ]
773 } else { 773 } else {
774 sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ] 774 sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ]
775 } 775 }
776 configs += [ ":pdfium_config" ] 776 configs += [ ":pdfium_config" ]
777 } 777 }
778 778
779 static_library("formfiller") { 779 static_library("formfiller") {
780 sources = [ 780 sources = [
781 "fpdfsdk/formfiller/FFL_CBA_Fontmap.cpp", 781 "fpdfsdk/formfiller/cba_fontmap.cpp",
782 "fpdfsdk/formfiller/FFL_CheckBox.cpp", 782 "fpdfsdk/formfiller/cba_fontmap.h",
783 "fpdfsdk/formfiller/FFL_ComboBox.cpp", 783 "fpdfsdk/formfiller/cffl_checkbox.cpp",
784 "fpdfsdk/formfiller/FFL_FormFiller.cpp", 784 "fpdfsdk/formfiller/cffl_checkbox.h",
785 "fpdfsdk/formfiller/FFL_IFormFiller.cpp", 785 "fpdfsdk/formfiller/cffl_combobox.cpp",
786 "fpdfsdk/formfiller/FFL_ListBox.cpp", 786 "fpdfsdk/formfiller/cffl_combobox.h",
787 "fpdfsdk/formfiller/FFL_PushButton.cpp", 787 "fpdfsdk/formfiller/cffl_formfiller.cpp",
788 "fpdfsdk/formfiller/FFL_RadioButton.cpp", 788 "fpdfsdk/formfiller/cffl_formfiller.h",
789 "fpdfsdk/formfiller/FFL_TextField.cpp", 789 "fpdfsdk/formfiller/cffl_iformfiller.cpp",
790 "fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h", 790 "fpdfsdk/formfiller/cffl_iformfiller.h",
791 "fpdfsdk/include/formfiller/FFL_CheckBox.h", 791 "fpdfsdk/formfiller/cffl_listbox.cpp",
792 "fpdfsdk/include/formfiller/FFL_ComboBox.h", 792 "fpdfsdk/formfiller/cffl_listbox.h",
793 "fpdfsdk/include/formfiller/FFL_FormFiller.h", 793 "fpdfsdk/formfiller/cffl_pushbutton.cpp",
794 "fpdfsdk/include/formfiller/FFL_IFormFiller.h", 794 "fpdfsdk/formfiller/cffl_pushbutton.h",
795 "fpdfsdk/include/formfiller/FFL_ListBox.h", 795 "fpdfsdk/formfiller/cffl_radiobutton.cpp",
796 "fpdfsdk/include/formfiller/FFL_PushButton.h", 796 "fpdfsdk/formfiller/cffl_radiobutton.h",
797 "fpdfsdk/include/formfiller/FFL_RadioButton.h", 797 "fpdfsdk/formfiller/cffl_textfield.cpp",
798 "fpdfsdk/include/formfiller/FFL_TextField.h", 798 "fpdfsdk/formfiller/cffl_textfield.h",
799 ] 799 ]
800 configs += [ ":pdfium_config" ] 800 configs += [ ":pdfium_config" ]
801 } 801 }
802 802
803 if (pdf_enable_xfa) { 803 if (pdf_enable_xfa) {
804 static_library("fpdfxfa") { 804 static_library("fpdfxfa") {
805 sources = [ 805 sources = [
806 "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp", 806 "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp",
807 "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp", 807 "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp",
808 "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp", 808 "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp",
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
1564 "//v8:v8_libplatform", 1564 "//v8:v8_libplatform",
1565 ] 1565 ]
1566 include_dirs += [ 1566 include_dirs += [
1567 "//v8", 1567 "//v8",
1568 "//v8/include", 1568 "//v8/include",
1569 ] 1569 ]
1570 configs += [ "//v8:external_startup_data" ] 1570 configs += [ "//v8:external_startup_data" ]
1571 } 1571 }
1572 configs += [ ":pdfium_config" ] 1572 configs += [ ":pdfium_config" ]
1573 } 1573 }
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