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

Side by Side Diff: BUILD.gn

Issue 1896893003: Cleanup FDE interfaces. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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 | xfa.gyp » ('j') | xfa/fde/fde_iterator.cpp » ('J')
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 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 ] 896 ]
897 configs -= [ "//build/config/compiler:chromium_code" ] 897 configs -= [ "//build/config/compiler:chromium_code" ]
898 configs += [ 898 configs += [
899 ":pdfium_config", 899 ":pdfium_config",
900 "//build/config/compiler:no_chromium_code", 900 "//build/config/compiler:no_chromium_code",
901 ] 901 ]
902 } 902 }
903 903
904 static_library("xfa") { 904 static_library("xfa") {
905 sources = [ 905 sources = [
906 "xfa/fde/cfde_path.cpp",
907 "xfa/fde/cfde_path.h",
906 "xfa/fde/css/fde_css.h", 908 "xfa/fde/css/fde_css.h",
907 "xfa/fde/css/fde_csscache.cpp", 909 "xfa/fde/css/fde_csscache.cpp",
908 "xfa/fde/css/fde_csscache.h", 910 "xfa/fde/css/fde_csscache.h",
909 "xfa/fde/css/fde_cssdatatable.cpp", 911 "xfa/fde/css/fde_cssdatatable.cpp",
910 "xfa/fde/css/fde_cssdatatable.h", 912 "xfa/fde/css/fde_cssdatatable.h",
911 "xfa/fde/css/fde_cssdeclaration.cpp", 913 "xfa/fde/css/fde_cssdeclaration.cpp",
912 "xfa/fde/css/fde_cssdeclaration.h", 914 "xfa/fde/css/fde_cssdeclaration.h",
913 "xfa/fde/css/fde_cssstyleselector.cpp", 915 "xfa/fde/css/fde_cssstyleselector.cpp",
914 "xfa/fde/css/fde_cssstyleselector.h", 916 "xfa/fde/css/fde_cssstyleselector.h",
915 "xfa/fde/css/fde_cssstylesheet.cpp", 917 "xfa/fde/css/fde_cssstylesheet.cpp",
916 "xfa/fde/css/fde_cssstylesheet.h", 918 "xfa/fde/css/fde_cssstylesheet.h",
917 "xfa/fde/css/fde_csssyntax.cpp", 919 "xfa/fde/css/fde_csssyntax.cpp",
918 "xfa/fde/css/fde_csssyntax.h", 920 "xfa/fde/css/fde_csssyntax.h",
919 "xfa/fde/fde_gedevice.cpp", 921 "xfa/fde/fde_gedevice.cpp",
920 "xfa/fde/fde_gedevice.h",
921 "xfa/fde/fde_geobject.cpp",
922 "xfa/fde/fde_geobject.h", 922 "xfa/fde/fde_geobject.h",
923 "xfa/fde/fde_iterator.cpp", 923 "xfa/fde/fde_iterator.cpp",
924 "xfa/fde/fde_iterator.h", 924 "xfa/fde/fde_iterator.h",
925 "xfa/fde/fde_object.h", 925 "xfa/fde/fde_object.h",
926 "xfa/fde/fde_path.h",
927 "xfa/fde/fde_render.cpp", 926 "xfa/fde/fde_render.cpp",
928 "xfa/fde/fde_render.h", 927 "xfa/fde/fde_render.h",
929 "xfa/fde/fde_renderdevice.h",
930 "xfa/fde/tto/fde_textout.cpp", 928 "xfa/fde/tto/fde_textout.cpp",
931 "xfa/fde/tto/fde_textout.h", 929 "xfa/fde/tto/fde_textout.h",
932 "xfa/fde/xml/fde_xml.h", 930 "xfa/fde/xml/fde_xml.h",
933 "xfa/fde/xml/fde_xml_imp.cpp", 931 "xfa/fde/xml/fde_xml_imp.cpp",
934 "xfa/fde/xml/fde_xml_imp.h", 932 "xfa/fde/xml/fde_xml_imp.h",
935 "xfa/fee/fde_txtedtbuf.cpp", 933 "xfa/fee/fde_txtedtbuf.cpp",
936 "xfa/fee/fde_txtedtbuf.h", 934 "xfa/fee/fde_txtedtbuf.h",
937 "xfa/fee/fde_txtedtengine.cpp", 935 "xfa/fee/fde_txtedtengine.cpp",
938 "xfa/fee/fde_txtedtengine.h", 936 "xfa/fee/fde_txtedtengine.h",
939 "xfa/fee/fde_txtedtpage.cpp", 937 "xfa/fee/fde_txtedtpage.cpp",
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
1714 "//v8:v8_libplatform", 1712 "//v8:v8_libplatform",
1715 ] 1713 ]
1716 include_dirs += [ 1714 include_dirs += [
1717 "//v8", 1715 "//v8",
1718 "//v8/include", 1716 "//v8/include",
1719 ] 1717 ]
1720 configs += [ "//v8:external_startup_data" ] 1718 configs += [ "//v8:external_startup_data" ]
1721 } 1719 }
1722 configs += [ ":pdfium_config" ] 1720 configs += [ ":pdfium_config" ]
1723 } 1721 }
OLDNEW
« no previous file with comments | « no previous file | xfa.gyp » ('j') | xfa/fde/fde_iterator.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698