Bug 938859 - Build layout/printing in unified mode; r=roc

This commit is contained in:
Ehsan Akhgari
2013-11-14 21:47:13 -05:00
parent 3b9ce73895
commit 68f574af9f
2 changed files with 3 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ XPIDL_MODULE = 'layout_printing'
MODULE = 'layout' MODULE = 'layout'
SOURCES += [ UNIFIED_SOURCES += [
'nsPagePrintTimer.cpp', 'nsPagePrintTimer.cpp',
'nsPrintData.cpp', 'nsPrintData.cpp',
'nsPrintEngine.cpp', 'nsPrintEngine.cpp',

View File

@@ -144,6 +144,7 @@ using namespace mozilla::dom;
#define DUMP_LAYOUT_LEVEL 9 // this turns on the dumping of each doucment's layout info #define DUMP_LAYOUT_LEVEL 9 // this turns on the dumping of each doucment's layout info
#ifndef PR_PL
static PRLogModuleInfo * static PRLogModuleInfo *
GetPrintingLog() GetPrintingLog()
{ {
@@ -153,6 +154,7 @@ GetPrintingLog()
return sLog; return sLog;
} }
#define PR_PL(_p1) PR_LOG(GetPrintingLog(), PR_LOG_DEBUG, _p1); #define PR_PL(_p1) PR_LOG(GetPrintingLog(), PR_LOG_DEBUG, _p1);
#endif
#ifdef EXTENDED_DEBUG_PRINTING #ifdef EXTENDED_DEBUG_PRINTING
static uint32_t gDumpFileNameCnt = 0; static uint32_t gDumpFileNameCnt = 0;