| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |