| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
| 7 ], | 7 ], |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['OS=="mac"', { | 9 ['OS=="mac"', { |
| 10 'targets' : [ | 10 'targets' : [ |
| 11 { | 11 { |
| 12 'target_name' : 'icon_family', | 12 'target_name' : 'icon_family', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'sources': [ | 14 'sources': [ |
| 15 'IconFamily.h', | 15 'IconFamily.h', |
| 16 'IconFamily.m', | 16 'IconFamily.m', |
| 17 'NSString+CarbonFSRefCreation.h', | 17 'NSString+CarbonFSRefCreation.h', |
| 18 'NSString+CarbonFSRefCreation.m', | 18 'NSString+CarbonFSRefCreation.m', |
| 19 ], | 19 ], |
| 20 'defines': [ |
| 21 'DISABLE_CUSTOM_ICON' |
| 22 ], |
| 20 }, | 23 }, |
| 21 ], | 24 ], |
| 22 }], | 25 }], |
| 23 ], | 26 ], |
| 24 } | 27 } |
| OLD | NEW |