| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 'conditions': [ | 211 'conditions': [ |
| 212 ['OS=="mac"', { | 212 ['OS=="mac"', { |
| 213 'link_settings': { | 213 'link_settings': { |
| 214 'libraries': [ | 214 'libraries': [ |
| 215 '$(SDKROOT)/usr/lib/libcups.dylib', | 215 '$(SDKROOT)/usr/lib/libcups.dylib', |
| 216 ] | 216 ] |
| 217 }, | 217 }, |
| 218 }, { | 218 }, { |
| 219 'link_settings': { | 219 'link_settings': { |
| 220 'libraries': [ | 220 'libraries': [ |
| 221 '<!@(cups-config --libs)', | 221 '<!@(python cups_config_helper.py --libs)', |
| 222 ], | 222 ], |
| 223 }, | 223 }, |
| 224 }], | 224 }], |
| 225 ], | 225 ], |
| 226 }, | 226 }, |
| 227 }], | 227 }], |
| 228 ], | 228 ], |
| 229 }, | 229 }, |
| 230 ], | 230 ], |
| 231 } | 231 } |
| OLD | NEW |