diff options
author | Lei Zhang <thestig@chromium.org> | 2018-10-12 22:03:15 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-10-12 22:03:15 +0000 |
commit | c98c7ec3f2827d92dd0575fb6b340d968dbba6b7 (patch) | |
tree | 5130ab0b9b6f0758e92838708e1607da57b9598d /core/fpdfapi/font | |
parent | dee25119008a39e2ee360c5c46d9ba18d7a340b8 (diff) | |
download | pdfium-c98c7ec3f2827d92dd0575fb6b340d968dbba6b7.tar.xz |
Split core/fpdfapi build rules into various sub-directories.
Change-Id: I98e2e913f11ff63e70cb841de00a4f56b06ca03b
Reviewed-on: https://pdfium-review.googlesource.com/c/43974
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/font')
-rw-r--r-- | core/fpdfapi/font/BUILD.gn | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/core/fpdfapi/font/BUILD.gn b/core/fpdfapi/font/BUILD.gn new file mode 100644 index 0000000000..e00bea75a5 --- /dev/null +++ b/core/fpdfapi/font/BUILD.gn @@ -0,0 +1,48 @@ +# Copyright 2018 The PDFium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +import("//build/config/jumbo.gni") +import("../../../pdfium.gni") + +jumbo_source_set("font") { + sources = [ + "cfx_cttgsubtable.cpp", + "cfx_cttgsubtable.h", + "cfx_stockfontarray.cpp", + "cfx_stockfontarray.h", + "cpdf_cid2unicodemap.cpp", + "cpdf_cid2unicodemap.h", + "cpdf_cidfont.cpp", + "cpdf_cidfont.h", + "cpdf_cmap.cpp", + "cpdf_cmap.h", + "cpdf_cmapmanager.cpp", + "cpdf_cmapmanager.h", + "cpdf_cmapparser.cpp", + "cpdf_cmapparser.h", + "cpdf_font.cpp", + "cpdf_font.h", + "cpdf_fontencoding.cpp", + "cpdf_fontencoding.h", + "cpdf_fontglobals.cpp", + "cpdf_fontglobals.h", + "cpdf_simplefont.cpp", + "cpdf_simplefont.h", + "cpdf_tounicodemap.cpp", + "cpdf_tounicodemap.h", + "cpdf_truetypefont.cpp", + "cpdf_truetypefont.h", + "cpdf_type1font.cpp", + "cpdf_type1font.h", + "cpdf_type3char.cpp", + "cpdf_type3char.h", + "cpdf_type3font.cpp", + "cpdf_type3font.h", + ] + configs += [ "../../../:pdfium_core_config" ] + deps = [ + "../../fxcrt", + ] + visibility = [ "../../../*" ] +} |