| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 256 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
| 257 'conditions': [ | 257 'conditions': [ |
| 258 ['linux_use_tcmalloc == 1', { | 258 ['linux_use_tcmalloc == 1', { |
| 259 'dependencies': [ | 259 'dependencies': [ |
| 260 '../base/allocator/allocator.gyp:allocator', | 260 '../base/allocator/allocator.gyp:allocator', |
| 261 ], | 261 ], |
| 262 }], | 262 }], |
| 263 ], | 263 ], |
| 264 }], | 264 }], |
| 265 ], | 265 ], |
| 266 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 267 'msvs_disabled_warnings': [ 4267, ], |
| 266 }, | 268 }, |
| 267 { | 269 { |
| 268 'target_name': 'cups', | 270 'target_name': 'cups', |
| 269 'type': 'none', | 271 'type': 'none', |
| 270 'conditions': [ | 272 'conditions': [ |
| 271 ['use_cups==1', { | 273 ['use_cups==1', { |
| 272 'direct_dependent_settings': { | 274 'direct_dependent_settings': { |
| 273 'defines': [ | 275 'defines': [ |
| 274 'USE_CUPS', | 276 'USE_CUPS', |
| 275 ], | 277 ], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 292 '<!@(python cups_config_helper.py --cflags)', | 294 '<!@(python cups_config_helper.py --cflags)', |
| 293 ], | 295 ], |
| 294 }], | 296 }], |
| 295 ], | 297 ], |
| 296 }, | 298 }, |
| 297 }], | 299 }], |
| 298 ], | 300 ], |
| 299 }, | 301 }, |
| 300 ], | 302 ], |
| 301 } | 303 } |
| OLD | NEW |