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

Side by Side Diff: build/common.gypi

Issue 10449006: Compile with -Wno-unused-local-typedefs to allow compilation with GCC 4.8 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 7 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/standalone.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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 }], 313 }],
314 ], 314 ],
315 }, 315 },
316 'VCLinkerTool': { 316 'VCLinkerTool': {
317 'LinkIncremental': '2', 317 'LinkIncremental': '2',
318 }, 318 },
319 }, 319 },
320 'conditions': [ 320 'conditions': [
321 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { 321 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', {
322 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', 322 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter',
323 '-Wnon-virtual-dtor', '-Woverloaded-virtual' ], 323 '-Wnon-virtual-dtor', '-Woverloaded-virtual',
324 '-Wno-unused-local-typedefs' ],
324 }], 325 }],
325 ], 326 ],
326 }, # Debug 327 }, # Debug
327 'Release': { 328 'Release': {
328 'conditions': [ 329 'conditions': [
329 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" \ 330 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" \
330 or OS=="android"', { 331 or OS=="android"', {
331 'cflags!': [ 332 'cflags!': [
332 '-O2', 333 '-O2',
333 '-Os', 334 '-Os',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 'OptimizeReferences': '2', 387 'OptimizeReferences': '2',
387 'EnableCOMDATFolding': '2', 388 'EnableCOMDATFolding': '2',
388 }, 389 },
389 }, 390 },
390 }], # OS=="win" 391 }], # OS=="win"
391 ], # conditions 392 ], # conditions
392 }, # Release 393 }, # Release
393 }, # configurations 394 }, # configurations
394 }, # target_defaults 395 }, # target_defaults
395 } 396 }
OLDNEW
« no previous file with comments | « no previous file | build/standalone.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698