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

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

Issue 1554923002: Reland 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 },
171 'link_settings': { 177 'link_settings': {
172 'libraries': [ 178 'libraries': [
173 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 179 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
174 ], 180 ],
175 'xcode_settings': { 181 'xcode_settings': {
176 'OTHER_LDFLAGS': [ 182 'OTHER_LDFLAGS': [
177 '-lcrypto', 183 '-lcrypto',
178 ], 184 ],
179 }, 185 },
180 }, 186 },
181 'include_dirs': [ 187 'include_dirs': [
182 'src/Source', 188 'src/Source',
183 ], 189 ],
184 'xcode_settings': { 190 'xcode_settings': {
185 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', 191 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch',
186 'CLANG_ENABLE_OBJC_ARC': 'YES', 192 'CLANG_ENABLE_OBJC_ARC': 'YES',
187 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', 193 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
188 }, 194 },
189 }, 195 },
190 ], # targets 196 ], # targets
191 } 197 }
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