| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 ['use_ash==0', { | 125 ['use_ash==0', { |
| 126 'sources!': [ | 126 'sources!': [ |
| 127 'views/message_bubble_base.cc', | 127 'views/message_bubble_base.cc', |
| 128 'views/message_bubble_base.h', | 128 'views/message_bubble_base.h', |
| 129 'views/message_center_bubble.cc', | 129 'views/message_center_bubble.cc', |
| 130 'views/message_center_bubble.h', | 130 'views/message_center_bubble.h', |
| 131 'views/message_popup_bubble.cc', | 131 'views/message_popup_bubble.cc', |
| 132 'views/message_popup_bubble.h', | 132 'views/message_popup_bubble.h', |
| 133 ], | 133 ], |
| 134 }], | 134 }], |
| 135 ['OS=="mac"', { | |
| 136 'dependencies': [ | |
| 137 '../ui.gyp:ui_cocoa_third_party_toolkits', | |
| 138 ], | |
| 139 'include_dirs': [ | |
| 140 '../../third_party/GTM', | |
| 141 ], | |
| 142 }], | |
| 143 ['toolkit_views==1', { | 135 ['toolkit_views==1', { |
| 144 'dependencies': [ | 136 'dependencies': [ |
| 145 '../compositor/compositor.gyp:compositor', | 137 '../compositor/compositor.gyp:compositor', |
| 146 ], | 138 ], |
| 147 }], | 139 }], |
| 148 ['notifications==0', { # Android and iOS. | 140 ['notifications==0', { # Android and iOS. |
| 149 'sources/': [ | 141 'sources/': [ |
| 150 # Exclude everything except dummy impl. | 142 # Exclude everything except dummy impl. |
| 151 ['exclude', '\\.(cc|mm)$'], | 143 ['exclude', '\\.(cc|mm)$'], |
| 152 ['include', '^dummy_message_center\\.cc$'], | 144 ['include', '^dummy_message_center\\.cc$'], |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 # See http://crbug.com/162998#c4 for why this is needed. | 234 # See http://crbug.com/162998#c4 for why this is needed. |
| 243 ['OS=="linux" and linux_use_tcmalloc==1', { | 235 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 244 'dependencies': [ | 236 'dependencies': [ |
| 245 '../../base/allocator/allocator.gyp:allocator', | 237 '../../base/allocator/allocator.gyp:allocator', |
| 246 ], | 238 ], |
| 247 }], | 239 }], |
| 248 ], | 240 ], |
| 249 }, # target_name: message_center_unittests | 241 }, # target_name: message_center_unittests |
| 250 ], | 242 ], |
| 251 } | 243 } |
| OLD | NEW |