diff options
Diffstat (limited to 'core/fpdfapi/edit/BUILD.gn')
-rw-r--r-- | core/fpdfapi/edit/BUILD.gn | 28 |
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 0000000000..1bcce79142 --- /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 = [ "../../../*" ] +} |