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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 'views/message_popup_bubble.h', | 112 'views/message_popup_bubble.h', |
113 ], | 113 ], |
114 }], | 114 }], |
115 ['OS=="mac"', { | 115 ['OS=="mac"', { |
116 'dependencies': [ | 116 'dependencies': [ |
117 '../ui.gyp:ui_cocoa_third_party_toolkits', | 117 '../ui.gyp:ui_cocoa_third_party_toolkits', |
118 ], | 118 ], |
119 'include_dirs': [ | 119 'include_dirs': [ |
120 '../../third_party/GTM', | 120 '../../third_party/GTM', |
121 ], | 121 ], |
| 122 'link_settings': { |
| 123 'libraries': [ |
| 124 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 125 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 126 ], |
| 127 }, |
122 }], | 128 }], |
123 ['toolkit_views==1', { | 129 ['toolkit_views==1', { |
124 'dependencies': [ | 130 'dependencies': [ |
125 '../compositor/compositor.gyp:compositor', | 131 '../compositor/compositor.gyp:compositor', |
126 ], | 132 ], |
127 }], | 133 }], |
128 ['notifications==0', { # Android and iOS. | 134 ['notifications==0', { # Android and iOS. |
129 'sources/': [ | 135 'sources/': [ |
130 # Exclude everything except dummy impl. | 136 # Exclude everything except dummy impl. |
131 ['exclude', '\\.(cc|mm)$'], | 137 ['exclude', '\\.(cc|mm)$'], |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 # See http://crbug.com/162998#c4 for why this is needed. | 221 # See http://crbug.com/162998#c4 for why this is needed. |
216 ['OS=="linux" and linux_use_tcmalloc==1', { | 222 ['OS=="linux" and linux_use_tcmalloc==1', { |
217 'dependencies': [ | 223 'dependencies': [ |
218 '../../base/allocator/allocator.gyp:allocator', | 224 '../../base/allocator/allocator.gyp:allocator', |
219 ], | 225 ], |
220 }], | 226 }], |
221 ], | 227 ], |
222 }, # target_name: message_center_unittests | 228 }, # target_name: message_center_unittests |
223 ], | 229 ], |
224 } | 230 } |
OLD | NEW |