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

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

Issue 1171203004: Correct iOS build for latest Xcode beta. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits 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 | « testing/iossim/iossim.mm ('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.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': {
175 'developer_dir': '<!(xcode-select -print-path)',
176 'xcode_version': '<!(xcodebuild -version | awk \'/Xcode/ {print $2}\')',
177 },
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 ],
174 'libraries': [ 189 'libraries': [
175 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 190 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
176 '$(SDKROOT)/usr/lib/libcrypto.dylib', 191 '$(SDKROOT)/usr/lib/libcrypto.<(dynamic_library_extension)',
177 ], 192 ],
178 'include_dirs': [ 193 'include_dirs': [
179 'src/Source', 194 'src/Source',
180 ], 195 ],
181 'xcode_settings': { 196 'xcode_settings': {
182 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', 197 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch',
183 'CLANG_ENABLE_OBJC_ARC': 'YES', 198 'CLANG_ENABLE_OBJC_ARC': 'YES',
184 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', 199 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
185 }, 200 },
186 }, 201 },
187 ], # targets 202 ], # targets
188 } 203 }
OLDNEW
« no previous file with comments | « testing/iossim/iossim.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698