| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'dart_debug_optimization_level%': '2', | 7 'dart_debug_optimization_level%': '2', |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'configurations': { | 10 'configurations': { |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 }, | 193 }, |
| 194 | 194 |
| 195 'Dart_Linux_Debug': { | 195 'Dart_Linux_Debug': { |
| 196 'abstract': 1, | 196 'abstract': 1, |
| 197 'conditions': [ | 197 'conditions': [ |
| 198 ['c_frame_pointers==1', { | 198 ['c_frame_pointers==1', { |
| 199 'cflags': [ | 199 'cflags': [ |
| 200 '-fno-omit-frame-pointer', | 200 '-fno-omit-frame-pointer', |
| 201 ], | 201 ], |
| 202 'defines': [ | 202 'defines': [ |
| 203 'PROFILE_NATIVE_CODE' | 203 'NATIVE_CODE_HAS_FRAME_POINTERS' |
| 204 ], | 204 ], |
| 205 }], | 205 }], |
| 206 ], | 206 ], |
| 207 'cflags': [ | 207 'cflags': [ |
| 208 '-O<(dart_debug_optimization_level)', | 208 '-O<(dart_debug_optimization_level)', |
| 209 ], | 209 ], |
| 210 }, | 210 }, |
| 211 | 211 |
| 212 'Dart_Linux_Release': { | 212 'Dart_Linux_Release': { |
| 213 'abstract': 1, | 213 'abstract': 1, |
| 214 'conditions': [ | 214 'conditions': [ |
| 215 ['c_frame_pointers==1', { | 215 ['c_frame_pointers==1', { |
| 216 'cflags': [ | 216 'cflags': [ |
| 217 '-fno-omit-frame-pointer', | 217 '-fno-omit-frame-pointer', |
| 218 ], | 218 ], |
| 219 'defines': [ | 219 'defines': [ |
| 220 'PROFILE_NATIVE_CODE' | 220 'NATIVE_CODE_HAS_FRAME_POINTERS' |
| 221 ], | 221 ], |
| 222 }], | 222 }], |
| 223 ], | 223 ], |
| 224 'cflags': [ | 224 'cflags': [ |
| 225 '-O3', | 225 '-O3', |
| 226 ], | 226 ], |
| 227 }, | 227 }, |
| 228 }, | 228 }, |
| 229 }, | 229 }, |
| 230 } | 230 } |
| OLD | NEW |