skia2/gn/pdf.gni
Hal Canary 4ca9fa30ba SkPDF: unify Canon and Document
motivation:  The Document has become intrusive enough that we almost
always have a pointer to the Document on hand anyways.

Also: update document.

Also: forward declare more things in headers.

Also, don't try to clean up resources when abort() or close() is called.
It is easy enough for the client to delete the Document when done.

Change-Id: I21aeed37f26ba16d68af041d9317adf00e9a61f2
Reviewed-on: https://skia-review.googlesource.com/c/180646
Commit-Queue: Hal Canary <halcanary@google.com>
Reviewed-by: Herb Derby <herb@google.com>
2019-01-14 17:56:14 +00:00

56 lines
1.7 KiB
Plaintext

# Copyright 2016 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Things are easiest for everyone if these source paths are absolute.
_src = get_path_info("../src", "abspath")
_include = get_path_info("../include", "abspath")
skia_pdf_sources = [
"$_include/docs/SkPDFDocument.h",
"$_src/pdf/SkBitmapKey.h",
"$_src/pdf/SkClusterator.cpp",
"$_src/pdf/SkClusterator.h",
"$_src/pdf/SkDeflate.cpp",
"$_src/pdf/SkDeflate.h",
"$_src/pdf/SkJpegInfo.cpp",
"$_src/pdf/SkJpegInfo.h",
"$_src/pdf/SkKeyedImage.cpp",
"$_src/pdf/SkKeyedImage.h",
"$_src/pdf/SkPDFBitmap.cpp",
"$_src/pdf/SkPDFBitmap.h",
"$_src/pdf/SkPDFConvertType1FontStream.cpp",
"$_src/pdf/SkPDFConvertType1FontStream.h",
"$_src/pdf/SkPDFDevice.cpp",
"$_src/pdf/SkPDFDevice.h",
"$_src/pdf/SkPDFDocument.cpp",
"$_src/pdf/SkPDFDocumentPriv.h",
"$_src/pdf/SkPDFFont.cpp",
"$_src/pdf/SkPDFFont.h",
"$_src/pdf/SkPDFFormXObject.cpp",
"$_src/pdf/SkPDFFormXObject.h",
"$_src/pdf/SkPDFGradientShader.cpp",
"$_src/pdf/SkPDFGradientShader.h",
"$_src/pdf/SkPDFGraphicState.cpp",
"$_src/pdf/SkPDFGraphicState.h",
"$_src/pdf/SkPDFMakeCIDGlyphWidthsArray.cpp",
"$_src/pdf/SkPDFMakeCIDGlyphWidthsArray.h",
"$_src/pdf/SkPDFMakeToUnicodeCmap.cpp",
"$_src/pdf/SkPDFMakeToUnicodeCmap.h",
"$_src/pdf/SkPDFMetadata.cpp",
"$_src/pdf/SkPDFMetadata.h",
"$_src/pdf/SkPDFResourceDict.cpp",
"$_src/pdf/SkPDFResourceDict.h",
"$_src/pdf/SkPDFShader.cpp",
"$_src/pdf/SkPDFShader.h",
"$_src/pdf/SkPDFSubsetFont.cpp",
"$_src/pdf/SkPDFSubsetFont.h",
"$_src/pdf/SkPDFTag.cpp",
"$_src/pdf/SkPDFTag.h",
"$_src/pdf/SkPDFTypes.cpp",
"$_src/pdf/SkPDFTypes.h",
"$_src/pdf/SkPDFUtils.cpp",
"$_src/pdf/SkPDFUtils.h",
]