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

Side by Side Diff: third_party/class-dump/class-dump.gyp

Issue 2066983004: Work around iossim compile issues on latest Xcode beta. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Created 4 years, 6 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 | « third_party/class-dump/BUILD.gn ('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) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'mac_deployment_target': '10.9', 7 'mac_deployment_target': '10.9',
8 'mac_sdk_min': '10.9', 8 'mac_sdk_min': '10.9',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 # hundreds of technically incorrect calls to stringWithFormat 174 # hundreds of technically incorrect calls to stringWithFormat
175 '-Wno-format', 175 '-Wno-format',
176 # e.g. CDRebaseTypeDescription in CDLCDyldInfo.m 176 # e.g. CDRebaseTypeDescription in CDLCDyldInfo.m
177 '-Wno-unused-function', 177 '-Wno-unused-function',
178 ], 178 ],
179 }, 179 },
180 'link_settings': { 180 'link_settings': {
181 'libraries': [ 181 'libraries': [
182 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 182 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
183 ], 183 ],
184 'xcode_settings': {
185 'OTHER_LDFLAGS': [
186 '-lcrypto',
187 ],
188 },
189 }, 184 },
190 'include_dirs': [ 185 'include_dirs': [
191 'src/Source', 186 'src/Source',
192 ], 187 ],
193 'xcode_settings': { 188 'xcode_settings': {
194 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', 189 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch',
195 'CLANG_ENABLE_OBJC_ARC': 'YES', 190 'CLANG_ENABLE_OBJC_ARC': 'YES',
196 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', 191 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
197 }, 192 },
198 }, 193 },
199 ], # targets 194 ], # targets
200 } 195 }
OLDNEW
« no previous file with comments | « third_party/class-dump/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698