diff options
Diffstat (limited to 'printing')
-rw-r--r-- | printing/printing.gyp | 54 |
1 files changed, 38 insertions, 16 deletions
diff --git a/printing/printing.gyp b/printing/printing.gyp index 1a39bfd..e3cafd2 100644 --- a/printing/printing.gyp +++ b/printing/printing.gyp @@ -125,6 +125,16 @@ ], }], ['use_cups==1', { + 'dependencies': [ + 'cups', + ], + 'conditions': [ + ['OS!="mac"', { + 'dependencies': [ + '../build/linux/system.gyp:libgcrypt', + ], + }], + ], 'defines': [ # PRINT_BACKEND_AVAILABLE disables the default dummy implementation # of the print backend and enables a custom implementation instead. @@ -135,22 +145,6 @@ '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', - ], - }, - }], - ], }], ], }, @@ -201,6 +195,34 @@ }], ], }, + { + 'target_name': 'cups', + 'type': 'none', + 'conditions': [ + ['use_cups==1', { + 'direct_dependent_settings': { + 'defines': [ + 'USE_CUPS', + ], + 'conditions': [ + ['OS=="mac"', { + 'link_settings': { + 'libraries': [ + '$(SDKROOT)/usr/lib/libcups.dylib', + ] + }, + }, { + 'link_settings': { + 'libraries': [ + '<!@(cups-config --libs)', + ], + }, + }], + ], + }, + }], + ], + }, ], } |