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

Side by Side Diff: build/standalone.gypi

Issue 648293007: Enable libstdc++ debug mode in debug builds. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Move to standalone.gypi. 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 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'arm_thumb': 'default', 129 'arm_thumb': 'default',
130 }, 130 },
131 'target_defaults': { 131 'target_defaults': {
132 'variables': { 132 'variables': {
133 'v8_code%': '<(v8_code)', 133 'v8_code%': '<(v8_code)',
134 }, 134 },
135 'default_configuration': 'Debug', 135 'default_configuration': 'Debug',
136 'configurations': { 136 'configurations': {
137 'DebugBaseCommon': { 137 'DebugBaseCommon': {
138 'cflags': [ '-g', '-O0' ], 138 'cflags': [ '-g', '-O0' ],
139 'defines': [
140 '_GLIBCXX_DEBUG'
141 ],
139 }, 142 },
140 'Optdebug': { 143 'Optdebug': {
141 'inherit_from': [ 'DebugBaseCommon', 'DebugBase2' ], 144 'inherit_from': [ 'DebugBaseCommon', 'DebugBase2' ],
142 }, 145 },
143 'Debug': { 146 'Debug': {
144 # Xcode insists on this empty entry. 147 # Xcode insists on this empty entry.
145 }, 148 },
146 'Release': { 149 'Release': {
147 # Xcode insists on this empty entry. 150 # Xcode insists on this empty entry.
148 }, 151 },
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 ], 412 ],
410 'target_conditions': [ 413 'target_conditions': [
411 ['_type!="static_library"', { 414 ['_type!="static_library"', {
412 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 415 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
413 }], 416 }],
414 ], # target_conditions 417 ], # target_conditions
415 }, # target_defaults 418 }, # target_defaults
416 }], # OS=="mac" 419 }], # OS=="mac"
417 ], 420 ],
418 } 421 }
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