OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 'conditions': [ | 266 'conditions': [ |
267 ['OS=="mac"', { | 267 ['OS=="mac"', { |
268 'link_settings': { | 268 'link_settings': { |
269 'libraries': [ | 269 'libraries': [ |
270 '$(SDKROOT)/usr/lib/libcups.dylib', | 270 '$(SDKROOT)/usr/lib/libcups.dylib', |
271 ] | 271 ] |
272 }, | 272 }, |
273 }, { | 273 }, { |
274 'link_settings': { | 274 'link_settings': { |
275 'libraries': [ | 275 'libraries': [ |
276 '<!@(python cups_config_helper.py --libs)', | 276 '<!@(python cups_config_helper.py --libs <(sysroot))', |
277 ], | 277 ], |
278 }, | 278 }, |
279 }], | 279 }], |
280 ['os_bsd==1', { | 280 ['os_bsd==1', { |
281 'cflags': [ | 281 'cflags': [ |
282 '<!@(python cups_config_helper.py --cflags)', | 282 '<!@(python cups_config_helper.py --cflags <(sysroot))', |
283 ], | 283 ], |
284 }], | 284 }], |
285 ], | 285 ], |
286 }, | 286 }, |
287 }], | 287 }], |
288 ], | 288 ], |
289 }, | 289 }, |
290 ], | 290 ], |
291 'conditions': [ | 291 'conditions': [ |
292 ['OS == "android"', { | 292 ['OS == "android"', { |
(...skipping 19 matching lines...) Expand all Loading... |
312 }, | 312 }, |
313 'dependencies': [ | 313 'dependencies': [ |
314 '../base/base.gyp:base_java', | 314 '../base/base.gyp:base_java', |
315 ], | 315 ], |
316 'includes': [ '../build/java.gypi' ], | 316 'includes': [ '../build/java.gypi' ], |
317 } | 317 } |
318 ] | 318 ] |
319 }], | 319 }], |
320 ] | 320 ] |
321 } | 321 } |
OLD | NEW |