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

Side by Side Diff: base/base.gyp

Issue 9117017: linux: remove no_strict_aliasing gyp variable (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: more Created 8 years, 11 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 | build/common.gypi » ('j') | 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) 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698