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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 'sources': ['pdf_transform_unittest.cc'] | 241 'sources': ['pdf_transform_unittest.cc'] |
242 }], | 242 }], |
243 ['use_cups==1', { | 243 ['use_cups==1', { |
244 'defines': [ | 244 'defines': [ |
245 'USE_CUPS', | 245 'USE_CUPS', |
246 ], | 246 ], |
247 'sources': [ | 247 'sources': [ |
248 'backend/cups_helper_unittest.cc', | 248 'backend/cups_helper_unittest.cc', |
249 ], | 249 ], |
250 }], | 250 }], |
251 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | |
252 'conditions': [ | |
253 ['use_allocator!="none"', { | |
254 'dependencies': [ | |
255 '../base/allocator/allocator.gyp:allocator', | |
256 ], | |
257 }], | |
258 ], | |
259 }], | |
260 ], | 251 ], |
261 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 252 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
262 'msvs_disabled_warnings': [ 4267, ], | 253 'msvs_disabled_warnings': [ 4267, ], |
263 }, | 254 }, |
264 { | 255 { |
265 # GN version: //printing:cups (config, not a target). | 256 # GN version: //printing:cups (config, not a target). |
266 'target_name': 'cups', | 257 'target_name': 'cups', |
267 'type': 'none', | 258 'type': 'none', |
268 'conditions': [ | 259 'conditions': [ |
269 ['use_cups==1', { | 260 ['use_cups==1', { |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 '../build/isolate.gypi', | 328 '../build/isolate.gypi', |
338 ], | 329 ], |
339 'sources': [ | 330 'sources': [ |
340 'printing_unittests.isolate', | 331 'printing_unittests.isolate', |
341 ], | 332 ], |
342 }, | 333 }, |
343 ], | 334 ], |
344 }], | 335 }], |
345 ] | 336 ] |
346 } | 337 } |
OLD | NEW |