OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 'sources!': [ | 296 'sources!': [ |
297 'file_version_info_unittest.cc', | 297 'file_version_info_unittest.cc', |
298 ], | 298 ], |
299 'conditions': [ | 299 'conditions': [ |
300 [ 'linux_use_tcmalloc==1', { | 300 [ 'linux_use_tcmalloc==1', { |
301 'dependencies': [ | 301 'dependencies': [ |
302 'allocator/allocator.gyp:allocator', | 302 'allocator/allocator.gyp:allocator', |
303 ], | 303 ], |
304 }, | 304 }, |
305 ], | 305 ], |
306 ['gcc_version==44', { | |
307 # Avoid gcc 4.4 strict aliasing issues in stl_tree.h when | |
308 # building mru_cache_unittest.cc. | |
309 'cflags': [ | |
310 '-fno-strict-aliasing', | |
311 ], | |
312 }], | |
313 [ 'toolkit_uses_gtk==1', { | 306 [ 'toolkit_uses_gtk==1', { |
314 'sources': [ | 307 'sources': [ |
315 'nix/xdg_util_unittest.cc', | 308 'nix/xdg_util_unittest.cc', |
316 ], | 309 ], |
317 'dependencies': [ | 310 'dependencies': [ |
318 '../build/linux/system.gyp:gtk', | 311 '../build/linux/system.gyp:gtk', |
319 ] | 312 ] |
320 }], | 313 }], |
321 ], | 314 ], |
322 'dependencies': [ | 315 'dependencies': [ |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 'msvs_settings': { | 464 'msvs_settings': { |
472 'VCLinkerTool': { | 465 'VCLinkerTool': { |
473 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 466 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
474 }, | 467 }, |
475 }, | 468 }, |
476 }, | 469 }, |
477 ], | 470 ], |
478 }], | 471 }], |
479 ], | 472 ], |
480 } | 473 } |
OLD | NEW |