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

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

Issue 1551253002: ios: -Werror for third-party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unsimplify 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') | third_party/sqlite/sqlite.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.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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
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': { 171 'variables': {
172 'clang_warning_flags': [ 172 'clang_warning_flags': [
173 # hundreds of technically incorrect calls to stringWithFormat
174 '-Wno-format',
173 # e.g. CDRebaseTypeDescription in CDLCDyldInfo.m 175 # e.g. CDRebaseTypeDescription in CDLCDyldInfo.m
174 '-Wno-unused-function', 176 '-Wno-unused-function',
175 ], 177 ],
176 }, 178 },
177 'link_settings': { 179 'link_settings': {
178 'libraries': [ 180 'libraries': [
179 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 181 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
180 ], 182 ],
181 'xcode_settings': { 183 'xcode_settings': {
182 'OTHER_LDFLAGS': [ 184 'OTHER_LDFLAGS': [
183 '-lcrypto', 185 '-lcrypto',
184 ], 186 ],
185 }, 187 },
186 }, 188 },
187 'include_dirs': [ 189 'include_dirs': [
188 'src/Source', 190 'src/Source',
189 ], 191 ],
190 'xcode_settings': { 192 'xcode_settings': {
191 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', 193 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch',
192 'CLANG_ENABLE_OBJC_ARC': 'YES', 194 'CLANG_ENABLE_OBJC_ARC': 'YES',
193 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', 195 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
194 }, 196 },
195 }, 197 },
196 ], # targets 198 ], # targets
197 } 199 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | third_party/sqlite/sqlite.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698