| OLD | NEW |
| 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': [ |
| 11 { | 11 { |
| 12 # GN version //third_party/class-dump(//build/toolchain/mac:clang_x64) |
| 12 'target_name': 'class-dump', | 13 'target_name': 'class-dump', |
| 13 'toolsets': ['host'], | 14 'toolsets': ['host'], |
| 14 'type': 'executable', | 15 'type': 'executable', |
| 15 'sources': [ | 16 'sources': [ |
| 16 'src/class-dump.m', | 17 'src/class-dump.m', |
| 17 'src/Source/CDBalanceFormatter.h', | 18 'src/Source/CDBalanceFormatter.h', |
| 18 'src/Source/CDBalanceFormatter.m', | 19 'src/Source/CDBalanceFormatter.m', |
| 19 'src/Source/CDClassDump.h', | 20 'src/Source/CDClassDump.h', |
| 20 'src/Source/CDClassDump.m', | 21 'src/Source/CDClassDump.m', |
| 21 'src/Source/CDClassDumpVisitor.h', | 22 'src/Source/CDClassDumpVisitor.h', |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 'src/Source', | 191 'src/Source', |
| 191 ], | 192 ], |
| 192 'xcode_settings': { | 193 'xcode_settings': { |
| 193 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', | 194 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', |
| 194 'CLANG_ENABLE_OBJC_ARC': 'YES', | 195 'CLANG_ENABLE_OBJC_ARC': 'YES', |
| 195 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', | 196 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', |
| 196 }, | 197 }, |
| 197 }, | 198 }, |
| 198 ], # targets | 199 ], # targets |
| 199 } | 200 } |
| OLD | NEW |