Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Side by Side Diff: printing/printing.gyp

Issue 1156773004: Honor 'sysroot' setting when running cups-config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@update_sysroot
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « printing/cups_config_helper.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « printing/cups_config_helper.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698