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

Side by Side Diff: printing/printing.gyp

Issue 10963008: Make printing_unittests depend on tcmalloc on non-Darwin posix systems (like net_unittests do) inst… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'USE_CUPS', 240 'USE_CUPS',
241 ], 241 ],
242 'sources': [ 242 'sources': [
243 'backend/cups_helper_unittest.cc', 243 'backend/cups_helper_unittest.cc',
244 ], 244 ],
245 }], 245 }],
246 ['toolkit_uses_gtk == 1', { 246 ['toolkit_uses_gtk == 1', {
247 'dependencies': [ 247 'dependencies': [
248 '../build/linux/system.gyp:gtk', 248 '../build/linux/system.gyp:gtk',
249 ], 249 ],
250 }],
251 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
250 'conditions': [ 252 'conditions': [
251 ['linux_use_tcmalloc == 1', { 253 ['linux_use_tcmalloc == 1', {
252 'dependencies': [ 254 'dependencies': [
253 '../base/allocator/allocator.gyp:allocator', 255 '../base/allocator/allocator.gyp:allocator',
254 ], 256 ],
255 }], 257 }],
256 ], 258 ],
257 }], 259 }],
258 ], 260 ],
259 }, 261 },
(...skipping 25 matching lines...) Expand all
285 '<!@(python cups_config_helper.py --cflags)', 287 '<!@(python cups_config_helper.py --cflags)',
286 ], 288 ],
287 }], 289 }],
288 ], 290 ],
289 }, 291 },
290 }], 292 }],
291 ], 293 ],
292 }, 294 },
293 ], 295 ],
294 } 296 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698