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

Side by Side Diff: build/toolchain.gypi

Issue 618243002: Don't filter out -O0 for debug configurations (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 ], 695 ],
696 }, 696 },
697 'VCLinkerTool': { 697 'VCLinkerTool': {
698 'LinkIncremental': '2', 698 'LinkIncremental': '2',
699 }, 699 },
700 }, 700 },
701 'conditions': [ 701 'conditions': [
702 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \ 702 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \
703 OS=="qnx"', { 703 OS=="qnx"', {
704 'cflags!': [ 704 'cflags!': [
705 '-O0',
706 '-O3', 705 '-O3',
707 '-O2', 706 '-O2',
708 '-O1', 707 '-O1',
709 '-Os', 708 '-Os',
710 ], 709 ],
711 'cflags': [ 710 'cflags': [
712 '-fdata-sections', 711 '-fdata-sections',
713 '-ffunction-sections', 712 '-ffunction-sections',
714 ], 713 ],
715 }], 714 }],
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 'OptimizeReferences': '2', 974 'OptimizeReferences': '2',
976 'EnableCOMDATFolding': '2', 975 'EnableCOMDATFolding': '2',
977 }, 976 },
978 }, 977 },
979 }], # OS=="win" 978 }], # OS=="win"
980 ], # conditions 979 ], # conditions
981 }, # Release 980 }, # Release
982 }, # configurations 981 }, # configurations
983 }, # target_defaults 982 }, # target_defaults
984 } 983 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698