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

Side by Side Diff: tools/gyp/v8.gyp

Issue 554131: Enable assertions and debugging code in the release... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/issue555/
Patch Set: Created 10 years, 10 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 | « src/objects.cc ('k') | 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 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'VCCLCompilerTool': { 70 'VCCLCompilerTool': {
71 'Optimizations': '0', 71 'Optimizations': '0',
72 'RuntimeLibrary': '1', 72 'RuntimeLibrary': '1',
73 }, 73 },
74 'VCLinkerTool': { 74 'VCLinkerTool': {
75 'LinkIncremental': '2', 75 'LinkIncremental': '2',
76 }, 76 },
77 }, 77 },
78 }, 78 },
79 'Release': { 79 'Release': {
80 'defines': [
81 'DEBUG',
82 '_DEBUG'
83 ],
80 'conditions': [ 84 'conditions': [
81 ['OS=="linux"', { 85 ['OS=="linux"', {
82 'cflags!': [ 86 'cflags!': [
83 '-O2', 87 '-O2',
84 '-Os', 88 '-Os',
85 ], 89 ],
86 'cflags': [ 90 'cflags': [
87 '-fomit-frame-pointer', 91 '-fomit-frame-pointer',
88 '-O3', 92 '-O3',
89 ], 93 ],
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 ], 615 ],
612 'conditions': [ 616 'conditions': [
613 [ 'OS=="win"', { 617 [ 'OS=="win"', {
614 # This could be gotten by not setting chromium_code, if that's OK. 618 # This could be gotten by not setting chromium_code, if that's OK.
615 'defines': ['_CRT_SECURE_NO_WARNINGS'], 619 'defines': ['_CRT_SECURE_NO_WARNINGS'],
616 }], 620 }],
617 ], 621 ],
618 }, 622 },
619 ], 623 ],
620 } 624 }
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698