| 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': [ |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 # hundreds of technically incorrect calls to stringWithFormat | 174 # hundreds of technically incorrect calls to stringWithFormat |
| 175 '-Wno-format', | 175 '-Wno-format', |
| 176 # e.g. CDRebaseTypeDescription in CDLCDyldInfo.m | 176 # e.g. CDRebaseTypeDescription in CDLCDyldInfo.m |
| 177 '-Wno-unused-function', | 177 '-Wno-unused-function', |
| 178 ], | 178 ], |
| 179 }, | 179 }, |
| 180 'link_settings': { | 180 'link_settings': { |
| 181 'libraries': [ | 181 'libraries': [ |
| 182 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 182 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 183 ], | 183 ], |
| 184 'xcode_settings': { | |
| 185 'OTHER_LDFLAGS': [ | |
| 186 '-lcrypto', | |
| 187 ], | |
| 188 }, | |
| 189 }, | 184 }, |
| 190 'include_dirs': [ | 185 'include_dirs': [ |
| 191 'src/Source', | 186 'src/Source', |
| 192 ], | 187 ], |
| 193 'xcode_settings': { | 188 'xcode_settings': { |
| 194 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', | 189 'GCC_PREFIX_HEADER': 'src/class-dump-Prefix.pch', |
| 195 'CLANG_ENABLE_OBJC_ARC': 'YES', | 190 'CLANG_ENABLE_OBJC_ARC': 'YES', |
| 196 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', | 191 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', |
| 197 }, | 192 }, |
| 198 }, | 193 }, |
| 199 ], # targets | 194 ], # targets |
| 200 } | 195 } |
| OLD | NEW |