If poppler is disable and native pdf is enabled, we still need SkPDFRasterizer.cpp

R=reed@google.com
TBR=reed@google.com
NOTREECHECKS=true
NOTRY=true

Author: vandebo@chromium.org

Review URL: https://codereview.chromium.org/133583004

git-svn-id: http://skia.googlecode.com/svn/trunk@13025 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
commit-bot@chromium.org 2014-01-10 19:09:00 +00:00
Родитель 5c6f1d4424
Коммит 1066f08378
3 изменённых файлов: 17 добавлений и 8 удалений

Просмотреть файл

@ -62,6 +62,11 @@
'pdf.gyp:pdf',
],
'conditions': [
['skia_run_pdfviewer_in_gm or skia_poppler_enabled', {
'sources': [
'../src/utils/SkPDFRasterizer.cpp',
],
}],
['skia_run_pdfviewer_in_gm', {
'defines': [
'SK_BUILD_NATIVE_PDF_RENDERER',
@ -77,9 +82,6 @@
'dependencies': [
'poppler.gyp:libpoppler-cpp-gpl',
],
'sources': [
'../src/utils/SkPDFRasterizer.cpp',
],
'defines': [
'SK_BUILD_POPPLER',
],

Просмотреть файл

@ -11,17 +11,21 @@
#pragma warning(disable : 4530)
#endif
#include <poppler-document.h>
#include <poppler-image.h>
#include <poppler-page.h>
#include <poppler-page-renderer.h>
#include "SkPDFRasterizer.h"
#include "SkColorPriv.h"
#ifdef SK_BUILD_NATIVE_PDF_RENDERER
#include "SkPdfRenderer.h"
#endif // SK_BUILD_NATIVE_PDF_RENDERER
#ifdef SK_BUILD_POPPLER
#include <poppler-document.h>
#include <poppler-image.h>
#include <poppler-page.h>
#include <poppler-page-renderer.h>
#endif // SK_BUILD_POPPLER
#ifdef SK_BUILD_POPPLER
bool SkPopplerRasterizePDF(SkStream* pdf, SkBitmap* output) {
size_t size = pdf->getLength();
SkAutoFree buffer(sk_malloc_throw(size));
@ -74,6 +78,7 @@ bool SkPopplerRasterizePDF(SkStream* pdf, SkBitmap* output) {
return true;
}
#endif // SK_BUILD_POPPLER
#ifdef SK_BUILD_NATIVE_PDF_RENDERER
bool SkNativeRasterizePDF(SkStream* pdf, SkBitmap* output) {

Просмотреть файл

@ -10,7 +10,9 @@
#include "SkBitmap.h"
#include "SkStream.h"
#ifdef SK_BUILD_POPPLER
bool SkPopplerRasterizePDF(SkStream* pdf, SkBitmap* output);
#endif // SK_BUILD_POPPLER
#ifdef SK_BUILD_NATIVE_PDF_RENDERER
bool SkNativeRasterizePDF(SkStream* pdf, SkBitmap* output);