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

Side by Side Diff: BUILD.gn

Issue 2217663002: Refactor fx_ge part 1 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 4 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 | core/fpdfapi/fpdf_font/cpdf_type1font.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_common_config") { 9 config("pdfium_common_config") {
10 cflags = [] 10 cflags = []
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 "core/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.cpp", 725 "core/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.cpp",
726 "core/fxge/fontdata/chromefontdata/FoxitSerifItalic.cpp", 726 "core/fxge/fontdata/chromefontdata/FoxitSerifItalic.cpp",
727 "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp", 727 "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp",
728 "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp", 728 "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp",
729 "core/fxge/fontdata/chromefontdata/chromefontdata.h", 729 "core/fxge/fontdata/chromefontdata/chromefontdata.h",
730 "core/fxge/freetype/fx_freetype.cpp", 730 "core/fxge/freetype/fx_freetype.cpp",
731 "core/fxge/ge/cfx_folderfontinfo.cpp", 731 "core/fxge/ge/cfx_folderfontinfo.cpp",
732 "core/fxge/ge/cfx_folderfontinfo.h", 732 "core/fxge/ge/cfx_folderfontinfo.h",
733 "core/fxge/ge/cfx_fontmapper.cpp", 733 "core/fxge/ge/cfx_fontmapper.cpp",
734 "core/fxge/ge/cfx_fontmgr.cpp", 734 "core/fxge/ge/cfx_fontmgr.cpp",
735 "core/fxge/ge/fx_ge.cpp", 735 "core/fxge/ge/cfx_gemodule.cpp",
736 "core/fxge/ge/fx_ge_device.cpp", 736 "core/fxge/ge/fx_ge_device.cpp",
737 "core/fxge/ge/fx_ge_font.cpp", 737 "core/fxge/ge/fx_ge_font.cpp",
738 "core/fxge/ge/fx_ge_fontmap.cpp", 738 "core/fxge/ge/fx_ge_fontmap.cpp",
739 "core/fxge/ge/fx_ge_linux.cpp", 739 "core/fxge/ge/fx_ge_linux.cpp",
740 "core/fxge/ge/fx_ge_path.cpp", 740 "core/fxge/ge/fx_ge_path.cpp",
741 "core/fxge/ge/fx_ge_text.cpp", 741 "core/fxge/ge/fx_ge_text.cpp",
742 "core/fxge/ge/fx_text_int.h", 742 "core/fxge/ge/fx_text_int.h",
743 "core/fxge/ge/include/cfx_fontmapper.h", 743 "core/fxge/ge/include/cfx_fontmapper.h",
744 "core/fxge/ge/include/cfx_fontmgr.h", 744 "core/fxge/ge/include/cfx_fontmgr.h",
745 "core/fxge/ge/include/ifx_systemfontinfo.h", 745 "core/fxge/ge/include/ifx_systemfontinfo.h",
746 "core/fxge/ifx_renderdevicedriver.cpp", 746 "core/fxge/ifx_renderdevicedriver.cpp",
747 "core/fxge/include/cfx_gemodule.h",
747 "core/fxge/include/cfx_windowsdevice.h", 748 "core/fxge/include/cfx_windowsdevice.h",
748 "core/fxge/include/fx_dib.h", 749 "core/fxge/include/fx_dib.h",
749 "core/fxge/include/fx_font.h", 750 "core/fxge/include/fx_font.h",
750 "core/fxge/include/fx_freetype.h", 751 "core/fxge/include/fx_freetype.h",
751 "core/fxge/include/fx_ge.h", 752 "core/fxge/include/fx_ge.h",
752 "core/fxge/include/ifx_renderdevicedriver.h", 753 "core/fxge/include/ifx_renderdevicedriver.h",
753 "core/fxge/win32/cfx_windowsdib.h", 754 "core/fxge/win32/cfx_windowsdib.h",
754 ] 755 ]
755 756
756 configs += [ 757 configs += [
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after
1652 } 1653 }
1653 1654
1654 if (pdf_is_standalone) { 1655 if (pdf_is_standalone) {
1655 source_set("samples") { 1656 source_set("samples") {
1656 testonly = true 1657 testonly = true
1657 deps = [ 1658 deps = [
1658 "//samples", 1659 "//samples",
1659 ] 1660 ]
1660 } 1661 }
1661 } 1662 }
OLDNEW
« no previous file with comments | « no previous file | core/fpdfapi/fpdf_font/cpdf_type1font.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698