OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # The purpose of this file and others in this directory is to simulate | 5 # The purpose of this file and others in this directory is to simulate |
6 # the Chromium build enviroment. This file is included in all GYP | 6 # the Chromium build enviroment. This file is included in all GYP |
7 # files that are used by the Dart project. | 7 # files that are used by the Dart project. |
8 | 8 |
9 # READ BEFORE EDITING: | 9 # READ BEFORE EDITING: |
10 # Do not add Dart VM specific configuration to this file. Instead, | 10 # Do not add Dart VM specific configuration to this file. Instead, |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 ['c_frame_pointers==1', { | 58 ['c_frame_pointers==1', { |
59 'xcode_settings': { | 59 'xcode_settings': { |
60 'OTHER_CFLAGS': [ | 60 'OTHER_CFLAGS': [ |
61 '-fno-omit-frame-pointer', | 61 '-fno-omit-frame-pointer', |
62 '-mno-omit-leaf-frame-pointer', | 62 '-mno-omit-leaf-frame-pointer', |
63 ], | 63 ], |
64 }, | 64 }, |
65 'defines': [ | 65 'defines': [ |
66 'PROFILE_NATIVE_CODE', | 66 'PROFILE_NATIVE_CODE', |
67 ], | 67 ], |
68 }, { | |
69 'xcode_settings': { | |
70 'OTHER_CFLAGS': [ | |
71 '-fomit-frame-pointer', | |
72 '-momit-leaf-frame-pointer', | |
73 ], | |
74 }, | |
75 }], | 68 }], |
76 ], | 69 ], |
77 }, | 70 }, |
78 'Dart_Macos_ia32_Base': { | 71 'Dart_Macos_ia32_Base': { |
79 'abstract': 1, | 72 'abstract': 1, |
80 }, | 73 }, |
81 'Dart_Macos_x64_Base': { | 74 'Dart_Macos_x64_Base': { |
82 'abstract': 1, | 75 'abstract': 1, |
83 }, | 76 }, |
84 'Dart_Macos_simarm_Base': { | 77 'Dart_Macos_simarm_Base': { |
85 'abstract': 1, | 78 'abstract': 1, |
86 }, | 79 }, |
87 'Dart_Macos_simarm64_Base': { | 80 'Dart_Macos_simarm64_Base': { |
88 'abstract': 1, | 81 'abstract': 1, |
89 }, | 82 }, |
90 'Dart_Macos_simmips_Base': { | 83 'Dart_Macos_simmips_Base': { |
91 'abstract': 1, | 84 'abstract': 1, |
92 }, | 85 }, |
93 'Dart_Macos_Debug': { | 86 'Dart_Macos_Debug': { |
94 'abstract': 1, | 87 'abstract': 1, |
95 }, | 88 }, |
96 'Dart_Macos_Release': { | 89 'Dart_Macos_Release': { |
97 'abstract': 1, | 90 'abstract': 1, |
98 }, | 91 }, |
99 }, | 92 }, |
100 }, | 93 }, |
101 } | 94 } |
OLD | NEW |