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

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

Issue 1179573004: Correct iOS device build for latest Xcode beta. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 5 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 | « net/net_common.gypi ('k') | third_party/libxml/libxml.gyp » ('j') | 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.8' 7 'mac_deployment_target': '10.8'
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 'src/Source/NSData-CDExtensions.h', 164 'src/Source/NSData-CDExtensions.h',
165 'src/Source/NSData-CDExtensions.m', 165 'src/Source/NSData-CDExtensions.m',
166 'src/Source/NSError-CDExtensions.h', 166 'src/Source/NSError-CDExtensions.h',
167 'src/Source/NSError-CDExtensions.m', 167 'src/Source/NSError-CDExtensions.m',
168 'src/Source/NSScanner-CDExtensions.h', 168 'src/Source/NSScanner-CDExtensions.h',
169 'src/Source/NSScanner-CDExtensions.m', 169 'src/Source/NSScanner-CDExtensions.m',
170 'src/Source/NSString-CDExtensions.h', 170 'src/Source/NSString-CDExtensions.h',
171 'src/Source/NSString-CDExtensions.m', 171 'src/Source/NSString-CDExtensions.m',
172 'src/Source/cd_objc2.h', 172 'src/Source/cd_objc2.h',
173 ], 173 ],
174 'variables': { 174 'link_settings': {
175 'developer_dir': '<!(xcode-select -print-path)', 175 'libraries': [
176 'xcode_version': '<!(xcodebuild -version | awk \'/Xcode/ {print $2}\')', 176 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
177 ],
178 'xcode_settings': {
179 'OTHER_LDFLAGS': [
180 '-lcrypto',
181 ],
182 },
177 }, 183 },
178 'conditions': [
179 ['xcode_version>="7.0"', {
180 'variables': {
181 'dynamic_library_extension': 'tbd',
182 },
183 }, { # else: xcode_version<"7.0"
184 'variables': {
185 'dynamic_library_extension': 'dylib',
186 },
187 }]
188 ],
189 'libraries': [
190 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
191 '$(SDKROOT)/usr/lib/libcrypto.<(dynamic_library_extension)',
192 ],
193 'include_dirs': [ 184 'include_dirs': [
194 'src/Source', 185 'src/Source',
195 ], 186 ],
196 'xcode_settings': { 187 'xcode_settings': {
197 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', 188 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch',
198 'CLANG_ENABLE_OBJC_ARC': 'YES', 189 'CLANG_ENABLE_OBJC_ARC': 'YES',
199 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', 190 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
200 }, 191 },
201 }, 192 },
202 ], # targets 193 ], # targets
203 } 194 }
OLDNEW
« no previous file with comments | « net/net_common.gypi ('k') | third_party/libxml/libxml.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698