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

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

Issue 1556843002: Revert of mac and ios: Build third-party code with -Wall. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « build/common.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) 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 'src/Source/NSError-CDExtensions.h', 161 'src/Source/NSError-CDExtensions.h',
162 'src/Source/NSError-CDExtensions.m', 162 'src/Source/NSError-CDExtensions.m',
163 'src/Source/NSScanner-CDExtensions.h', 163 'src/Source/NSScanner-CDExtensions.h',
164 'src/Source/NSScanner-CDExtensions.m', 164 'src/Source/NSScanner-CDExtensions.m',
165 'src/Source/NSString-CDExtensions.h', 165 'src/Source/NSString-CDExtensions.h',
166 'src/Source/NSString-CDExtensions.m', 166 'src/Source/NSString-CDExtensions.m',
167 'src/Source/ULEB128.h', 167 'src/Source/ULEB128.h',
168 'src/Source/ULEB128.m', 168 'src/Source/ULEB128.m',
169 'src/Source/cd_objc2.h', 169 'src/Source/cd_objc2.h',
170 ], 170 ],
171 'variables': {
172 'clang_warning_flags': [
173 # e.g. CDRebaseTypeDescription in CDLCDyldInfo.m
174 '-Wno-unused-function',
175 ],
176 },
177 'link_settings': { 171 'link_settings': {
178 'libraries': [ 172 'libraries': [
179 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 173 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
180 ], 174 ],
181 'xcode_settings': { 175 'xcode_settings': {
182 'OTHER_LDFLAGS': [ 176 'OTHER_LDFLAGS': [
183 '-lcrypto', 177 '-lcrypto',
184 ], 178 ],
185 }, 179 },
186 }, 180 },
187 'include_dirs': [ 181 'include_dirs': [
188 'src/Source', 182 'src/Source',
189 ], 183 ],
190 'xcode_settings': { 184 'xcode_settings': {
191 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', 185 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch',
192 'CLANG_ENABLE_OBJC_ARC': 'YES', 186 'CLANG_ENABLE_OBJC_ARC': 'YES',
193 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', 187 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
194 }, 188 },
195 }, 189 },
196 ], # targets 190 ], # targets
197 } 191 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698