summaryrefslogtreecommitdiffstats
path: root/printing
diff options
context:
space:
mode:
Diffstat (limited to 'printing')
-rw-r--r--printing/backend/print_backend_cups.cc6
-rw-r--r--printing/printing.gyp22
2 files changed, 22 insertions, 6 deletions
diff --git a/printing/backend/print_backend_cups.cc b/printing/backend/print_backend_cups.cc
index 9693299..09fdf1d 100644
--- a/printing/backend/print_backend_cups.cc
+++ b/printing/backend/print_backend_cups.cc
@@ -6,7 +6,9 @@
#include <dlfcn.h>
#include <errno.h>
+#if !defined(OS_MACOSX)
#include <gcrypt.h>
+#endif
#include <pthread.h>
#include "base/file_util.h"
@@ -18,6 +20,7 @@
#include "googleurl/src/gurl.h"
#include "printing/backend/cups_helper.h"
+#if !defined(OS_MACOSX)
GCRY_THREAD_OPTION_PTHREAD_IMPL;
namespace {
@@ -64,6 +67,7 @@ class GcryptInitializer {
};
} // namespace
+#endif
namespace printing {
@@ -182,8 +186,10 @@ bool PrintBackendCUPS::IsValidPrinter(const std::string& printer_name) {
scoped_refptr<PrintBackend> PrintBackend::CreateInstance(
const DictionaryValue* print_backend_settings) {
+#if !defined(OS_MACOSX)
// Initialize gcrypt library.
Singleton<GcryptInitializer>::get();
+#endif
std::string print_server_url_str;
if (print_backend_settings) {
diff --git a/printing/printing.gyp b/printing/printing.gyp
index ac87ab3..7acb6d7 100644
--- a/printing/printing.gyp
+++ b/printing/printing.gyp
@@ -112,12 +112,6 @@
],
}],
['use_cups==1', {
- 'link_settings': {
- 'libraries': [
- '-lcups',
- '-lgcrypt',
- ],
- },
'defines': [
# PRINT_BACKEND_AVAILABLE disables the default dummy implementation
# of the print backend and enables a custom implementation instead.
@@ -128,6 +122,22 @@
'backend/cups_helper.h',
'backend/print_backend_cups.cc',
],
+ 'conditions': [
+ ['OS=="mac"', {
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/usr/lib/libcups.dylib',
+ ]
+ },
+ }, {
+ 'link_settings': {
+ 'libraries': [
+ '-lcups',
+ '-lgcrypt',
+ ],
+ },
+ }],
+ ],
}],
],
},