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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 }, | 73 }, |
74 'Dart_Macos_simarm64_Base': { | 74 'Dart_Macos_simarm64_Base': { |
75 'abstract': 1, | 75 'abstract': 1, |
76 }, | 76 }, |
77 'Dart_Macos_simmips_Base': { | 77 'Dart_Macos_simmips_Base': { |
78 'abstract': 1, | 78 'abstract': 1, |
79 }, | 79 }, |
80 'Dart_Macos_simdbc_Base': { | 80 'Dart_Macos_simdbc_Base': { |
81 'abstract': 1, | 81 'abstract': 1, |
82 }, | 82 }, |
| 83 'Dart_Macos_simdbc64_Base': { |
| 84 'abstract': 1, |
| 85 }, |
83 'Dart_Macos_Debug': { | 86 'Dart_Macos_Debug': { |
84 'abstract': 1, | 87 'abstract': 1, |
85 'xcode_settings': { | 88 'xcode_settings': { |
86 'OTHER_CFLAGS': [ | 89 'OTHER_CFLAGS': [ |
87 '-fno-omit-frame-pointer', | 90 '-fno-omit-frame-pointer', |
88 '-mno-omit-leaf-frame-pointer', | 91 '-mno-omit-leaf-frame-pointer', |
89 ], | 92 ], |
90 }, | 93 }, |
91 }, | 94 }, |
92 'Dart_Macos_Release': { | 95 'Dart_Macos_Release': { |
(...skipping 10 matching lines...) Expand all Loading... |
103 'xcode_settings': { | 106 'xcode_settings': { |
104 'OTHER_CFLAGS': [ | 107 'OTHER_CFLAGS': [ |
105 '-fomit-frame-pointer', | 108 '-fomit-frame-pointer', |
106 '-momit-leaf-frame-pointer', | 109 '-momit-leaf-frame-pointer', |
107 ], | 110 ], |
108 }, | 111 }, |
109 }, | 112 }, |
110 }, | 113 }, |
111 }, | 114 }, |
112 } | 115 } |
OLD | NEW |