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

Side by Side Diff: third_party/class-dump/BUILD.gn

Issue 2092133002: [Mac/GN] Add missing -Wobjc-missing-property-synthesis. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move to chromium_code. Created 4 years, 5 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/config/mac/BUILD.gn ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 config("config") { 5 config("config") {
6 visibility = [ ":class-dump" ] 6 visibility = [ ":class-dump" ]
7 libs = [ "Foundation.framework" ] 7 libs = [ "Foundation.framework" ]
8 8
9 # TODO(crbug.com/595295): Building class-dump tools requires OS X SDK 9 # TODO(crbug.com/595295): Building class-dump tools requires OS X SDK
10 # version 10.9 or higher. Remove this override once the global version 10 # version 10.9 or higher. Remove this override once the global version
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 "src/Source/NSScanner-CDExtensions.h", 174 "src/Source/NSScanner-CDExtensions.h",
175 "src/Source/NSScanner-CDExtensions.m", 175 "src/Source/NSScanner-CDExtensions.m",
176 "src/Source/NSString-CDExtensions.h", 176 "src/Source/NSString-CDExtensions.h",
177 "src/Source/NSString-CDExtensions.m", 177 "src/Source/NSString-CDExtensions.m",
178 "src/Source/ULEB128.h", 178 "src/Source/ULEB128.h",
179 "src/Source/ULEB128.m", 179 "src/Source/ULEB128.m",
180 "src/Source/cd_objc2.h", 180 "src/Source/cd_objc2.h",
181 "src/class-dump.m", 181 "src/class-dump.m",
182 ] 182 ]
183 183
184 configs -= [ "//build/config/compiler:chromium_code" ]
184 configs += [ 185 configs += [
185 ":config", 186 ":config",
186 "//build/config/compiler:enable_arc", 187 "//build/config/compiler:enable_arc",
187 "//build/config/compiler:no_chromium_code", 188 "//build/config/compiler:no_chromium_code",
188 ] 189 ]
189 190
190 # TODO(crbug.com/595295): Building class-dump tools requires OS X SDK 191 # TODO(crbug.com/595295): Building class-dump tools requires OS X SDK
191 # version 10.9 or higher. To prevent mixing code using different value 192 # version 10.9 or higher. To prevent mixing code using different value
192 # of minimum SDK supported, forbids dependencies on any Chromium target. 193 # of minimum SDK supported, forbids dependencies on any Chromium target.
193 assert_no_deps = [ "//base/*" ] 194 assert_no_deps = [ "//base/*" ]
194 } 195 }
OLDNEW
« no previous file with comments | « build/config/mac/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698