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

Side by Side Diff: tools/gyp/configurations_xcode.gypi

Issue 1666063002: Fix ARM cross build: (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « tools/gyp/configurations_make.gypi ('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 (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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_Debug': { 80 'Dart_Macos_Debug': {
81 'abstract': 1, 81 'abstract': 1,
82 'xcode_settings': { 82 'xcode_settings': {
83 'OTHER_CFLAGS': [ 83 'OTHER_CFLAGS': [
84 '-fno-omit-frame-pointer', 84 '-fno-omit-frame-pointer',
85 '-mno-omit-leaf-frame-pointer', 85 '-mno-omit-leaf-frame-pointer',
86 ], 86 ],
87 }, 87 },
88 }, 88 },
89 'Dart_Macos_Release': { 89 'Dart_Macos_Release': {
90 'abstract': 1, 90 'abstract': 1,
91 'xcode_settings': { 91 'xcode_settings': {
92 'OTHER_CFLAGS': [ 92 'OTHER_CFLAGS': [
93 '-fno-omit-frame-pointer', 93 '-fno-omit-frame-pointer',
94 '-mno-omit-leaf-frame-pointer', 94 '-mno-omit-leaf-frame-pointer',
95 ], 95 ],
96 }, 96 },
97 }, 97 },
98 'Dart_Macos_Product': { 98 'Dart_Macos_Product': {
99 'abstract': 1, 99 'abstract': 1,
100 'xcode_settings': { 100 'xcode_settings': {
101 'OTHER_CFLAGS': [ 101 'OTHER_CFLAGS': [
102 '-fomit-frame-pointer', 102 '-fomit-frame-pointer',
103 '-momit-leaf-frame-pointer', 103 '-momit-leaf-frame-pointer',
104 ], 104 ],
105 }, 105 },
106 }, 106 },
107 }, 107 },
108 }, 108 },
109 } 109 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations_make.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698