diff options
author | Lei Zhang <thestig@chromium.org> | 2018-10-12 18:58:21 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-10-12 18:58:21 +0000 |
commit | 8460088891f98a9138718fc9c89bf309eb88580f (patch) | |
tree | 0a9e3023f6262c720326b7f74df7b31f2d6ca5c8 /core/fpdftext | |
parent | d145e4b923ae99f67b734924885738437248aa85 (diff) | |
download | pdfium-8460088891f98a9138718fc9c89bf309eb88580f.tar.xz |
Split most core build rules into various BUILD.gn files in core.
Change-Id: I773eec2bbf104f073eba7a64ed19f6fba0131d21
Reviewed-on: https://pdfium-review.googlesource.com/c/43946
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'core/fpdftext')
-rw-r--r-- | core/fpdftext/BUILD.gn | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/core/fpdftext/BUILD.gn b/core/fpdftext/BUILD.gn new file mode 100644 index 0000000000..9f3104e50a --- /dev/null +++ b/core/fpdftext/BUILD.gn @@ -0,0 +1,24 @@ +# 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("fpdftext") { + sources = [ + "cpdf_linkextract.cpp", + "cpdf_linkextract.h", + "cpdf_textpage.cpp", + "cpdf_textpage.h", + "cpdf_textpagefind.cpp", + "cpdf_textpagefind.h", + "unicodenormalizationdata.cpp", + "unicodenormalizationdata.h", + ] + configs += [ "../../:pdfium_core_config" ] + deps = [ + "../../:fxcrt", + ] + visibility = [ "../../*" ] +} |