aboutsummaryrefslogtreecommitdiff
path: root/core/fpdfapi/edit/BUILD.gn
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-10-12 22:03:15 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-12 22:03:15 +0000
commitc98c7ec3f2827d92dd0575fb6b340d968dbba6b7 (patch)
tree5130ab0b9b6f0758e92838708e1607da57b9598d /core/fpdfapi/edit/BUILD.gn
parentdee25119008a39e2ee360c5c46d9ba18d7a340b8 (diff)
downloadpdfium-c98c7ec3f2827d92dd0575fb6b340d968dbba6b7.tar.gz
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/edit/BUILD.gn')
-rw-r--r--core/fpdfapi/edit/BUILD.gn28
1 files changed, 28 insertions, 0 deletions
diff --git a/core/fpdfapi/edit/BUILD.gn b/core/fpdfapi/edit/BUILD.gn
new file mode 100644
index 000000000..1bcce7914
--- /dev/null
+++ b/core/fpdfapi/edit/BUILD.gn
@@ -0,0 +1,28 @@
+# 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("edit") {
+ sources = [
+ "cpdf_creator.cpp",
+ "cpdf_creator.h",
+ "cpdf_encryptor.cpp",
+ "cpdf_encryptor.h",
+ "cpdf_flateencoder.cpp",
+ "cpdf_flateencoder.h",
+ "cpdf_pagecontentgenerator.cpp",
+ "cpdf_pagecontentgenerator.h",
+ "cpdf_pagecontentmanager.cpp",
+ "cpdf_pagecontentmanager.h",
+ "cpdf_stringarchivestream.cpp",
+ "cpdf_stringarchivestream.h",
+ ]
+ configs += [ "../../../:pdfium_core_config" ]
+ deps = [
+ "../../fxcrt",
+ ]
+ visibility = [ "../../../*" ]
+}