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

Side by Side Diff: BUILD.gn

Issue 1823153002: Move the fpdfsdk/include/pdfwindow/ headers into fpdfsdk/pdfwindow. (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/cba_fontmap.h » ('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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 "fpdfsdk/fxedit/fxet_pageobjs.cpp", 707 "fpdfsdk/fxedit/fxet_pageobjs.cpp",
708 "fpdfsdk/include/fxedit/fx_edit.h", 708 "fpdfsdk/include/fxedit/fx_edit.h",
709 "fpdfsdk/include/fxedit/fxet_edit.h", 709 "fpdfsdk/include/fxedit/fxet_edit.h",
710 "fpdfsdk/include/fxedit/fxet_list.h", 710 "fpdfsdk/include/fxedit/fxet_list.h",
711 ] 711 ]
712 configs += [ ":pdfium_config" ] 712 configs += [ ":pdfium_config" ]
713 } 713 }
714 714
715 static_library("pdfwindow") { 715 static_library("pdfwindow") {
716 sources = [ 716 sources = [
717 "fpdfsdk/include/pdfwindow/PWL_Button.h",
718 "fpdfsdk/include/pdfwindow/PWL_Caret.h",
719 "fpdfsdk/include/pdfwindow/PWL_ComboBox.h",
720 "fpdfsdk/include/pdfwindow/PWL_Edit.h",
721 "fpdfsdk/include/pdfwindow/PWL_EditCtrl.h",
722 "fpdfsdk/include/pdfwindow/PWL_FontMap.h",
723 "fpdfsdk/include/pdfwindow/PWL_Icon.h",
724 "fpdfsdk/include/pdfwindow/PWL_IconList.h",
725 "fpdfsdk/include/pdfwindow/PWL_Label.h",
726 "fpdfsdk/include/pdfwindow/PWL_ListBox.h",
727 "fpdfsdk/include/pdfwindow/PWL_ListCtrl.h",
728 "fpdfsdk/include/pdfwindow/PWL_Note.h",
729 "fpdfsdk/include/pdfwindow/PWL_ScrollBar.h",
730 "fpdfsdk/include/pdfwindow/PWL_Signature.h",
731 "fpdfsdk/include/pdfwindow/PWL_SpecialButton.h",
732 "fpdfsdk/include/pdfwindow/PWL_Utils.h",
733 "fpdfsdk/include/pdfwindow/PWL_Wnd.h",
734 "fpdfsdk/pdfwindow/PWL_Button.cpp", 717 "fpdfsdk/pdfwindow/PWL_Button.cpp",
718 "fpdfsdk/pdfwindow/PWL_Button.h",
735 "fpdfsdk/pdfwindow/PWL_Caret.cpp", 719 "fpdfsdk/pdfwindow/PWL_Caret.cpp",
720 "fpdfsdk/pdfwindow/PWL_Caret.h",
736 "fpdfsdk/pdfwindow/PWL_ComboBox.cpp", 721 "fpdfsdk/pdfwindow/PWL_ComboBox.cpp",
722 "fpdfsdk/pdfwindow/PWL_ComboBox.h",
737 "fpdfsdk/pdfwindow/PWL_Edit.cpp", 723 "fpdfsdk/pdfwindow/PWL_Edit.cpp",
724 "fpdfsdk/pdfwindow/PWL_Edit.h",
738 "fpdfsdk/pdfwindow/PWL_EditCtrl.cpp", 725 "fpdfsdk/pdfwindow/PWL_EditCtrl.cpp",
726 "fpdfsdk/pdfwindow/PWL_EditCtrl.h",
739 "fpdfsdk/pdfwindow/PWL_FontMap.cpp", 727 "fpdfsdk/pdfwindow/PWL_FontMap.cpp",
728 "fpdfsdk/pdfwindow/PWL_FontMap.h",
740 "fpdfsdk/pdfwindow/PWL_Icon.cpp", 729 "fpdfsdk/pdfwindow/PWL_Icon.cpp",
730 "fpdfsdk/pdfwindow/PWL_Icon.h",
741 "fpdfsdk/pdfwindow/PWL_IconList.cpp", 731 "fpdfsdk/pdfwindow/PWL_IconList.cpp",
732 "fpdfsdk/pdfwindow/PWL_IconList.h",
742 "fpdfsdk/pdfwindow/PWL_Label.cpp", 733 "fpdfsdk/pdfwindow/PWL_Label.cpp",
734 "fpdfsdk/pdfwindow/PWL_Label.h",
743 "fpdfsdk/pdfwindow/PWL_ListBox.cpp", 735 "fpdfsdk/pdfwindow/PWL_ListBox.cpp",
736 "fpdfsdk/pdfwindow/PWL_ListBox.h",
744 "fpdfsdk/pdfwindow/PWL_ListCtrl.cpp", 737 "fpdfsdk/pdfwindow/PWL_ListCtrl.cpp",
738 "fpdfsdk/pdfwindow/PWL_ListCtrl.h",
745 "fpdfsdk/pdfwindow/PWL_Note.cpp", 739 "fpdfsdk/pdfwindow/PWL_Note.cpp",
740 "fpdfsdk/pdfwindow/PWL_Note.h",
746 "fpdfsdk/pdfwindow/PWL_ScrollBar.cpp", 741 "fpdfsdk/pdfwindow/PWL_ScrollBar.cpp",
742 "fpdfsdk/pdfwindow/PWL_ScrollBar.h",
747 "fpdfsdk/pdfwindow/PWL_Signature.cpp", 743 "fpdfsdk/pdfwindow/PWL_Signature.cpp",
744 "fpdfsdk/pdfwindow/PWL_Signature.h",
748 "fpdfsdk/pdfwindow/PWL_SpecialButton.cpp", 745 "fpdfsdk/pdfwindow/PWL_SpecialButton.cpp",
746 "fpdfsdk/pdfwindow/PWL_SpecialButton.h",
749 "fpdfsdk/pdfwindow/PWL_Utils.cpp", 747 "fpdfsdk/pdfwindow/PWL_Utils.cpp",
748 "fpdfsdk/pdfwindow/PWL_Utils.h",
750 "fpdfsdk/pdfwindow/PWL_Wnd.cpp", 749 "fpdfsdk/pdfwindow/PWL_Wnd.cpp",
750 "fpdfsdk/pdfwindow/PWL_Wnd.h",
751 ] 751 ]
752 configs += [ ":pdfium_config" ] 752 configs += [ ":pdfium_config" ]
753 } 753 }
754 754
755 static_library("javascript") { 755 static_library("javascript") {
756 sources = [ 756 sources = [
757 "fpdfsdk/include/javascript/IJavaScript.h", 757 "fpdfsdk/include/javascript/IJavaScript.h",
758 ] 758 ]
759 if (pdf_enable_v8) { 759 if (pdf_enable_v8) {
760 sources += [ 760 sources += [
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
1638 "//v8:v8_libplatform", 1638 "//v8:v8_libplatform",
1639 ] 1639 ]
1640 include_dirs += [ 1640 include_dirs += [
1641 "//v8", 1641 "//v8",
1642 "//v8/include", 1642 "//v8/include",
1643 ] 1643 ]
1644 configs += [ "//v8:external_startup_data" ] 1644 configs += [ "//v8:external_startup_data" ]
1645 } 1645 }
1646 configs += [ ":pdfium_config" ] 1646 configs += [ ":pdfium_config" ]
1647 } 1647 }
OLDNEW
« no previous file with comments | « no previous file | fpdfsdk/formfiller/cba_fontmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698