| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 'conditions': [ | 88 'conditions': [ |
| 89 ['toolkit_views==1', { | 89 ['toolkit_views==1', { |
| 90 'dependencies': [ | 90 'dependencies': [ |
| 91 '../views/views.gyp:views', | 91 '../views/views.gyp:views', |
| 92 ], | 92 ], |
| 93 }, { | 93 }, { |
| 94 'sources/': [ | 94 'sources/': [ |
| 95 ['exclude', 'views/'], | 95 ['exclude', 'views/'], |
| 96 ], | 96 ], |
| 97 }], | 97 }], |
| 98 ['use_ash==0', { |
| 99 'sources!': [ |
| 100 'views/message_bubble_base.cc', |
| 101 'views/message_bubble_base.h', |
| 102 'views/message_center_bubble.cc', |
| 103 'views/message_center_bubble.h', |
| 104 'views/message_popup_bubble.cc', |
| 105 'views/message_popup_bubble.h', |
| 106 ], |
| 107 }], |
| 98 ['OS=="mac"', { | 108 ['OS=="mac"', { |
| 99 'dependencies': [ | 109 'dependencies': [ |
| 100 '../ui.gyp:ui_cocoa_third_party_toolkits', | 110 '../ui.gyp:ui_cocoa_third_party_toolkits', |
| 101 ], | 111 ], |
| 102 'include_dirs': [ | 112 'include_dirs': [ |
| 103 '../../third_party/GTM', | 113 '../../third_party/GTM', |
| 104 ], | 114 ], |
| 105 }], | 115 }], |
| 106 ['toolkit_views==1', { | 116 ['toolkit_views==1', { |
| 107 'dependencies': [ | 117 'dependencies': [ |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 # See http://crbug.com/162998#c4 for why this is needed. | 204 # See http://crbug.com/162998#c4 for why this is needed. |
| 195 ['OS=="linux" and linux_use_tcmalloc==1', { | 205 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 196 'dependencies': [ | 206 'dependencies': [ |
| 197 '../../base/allocator/allocator.gyp:allocator', | 207 '../../base/allocator/allocator.gyp:allocator', |
| 198 ], | 208 ], |
| 199 }], | 209 }], |
| 200 ], | 210 ], |
| 201 }, # target_name: message_center_unittests | 211 }, # target_name: message_center_unittests |
| 202 ], | 212 ], |
| 203 } | 213 } |
| OLD | NEW |