| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 'conditions': [ | 92 'conditions': [ |
| 93 ['toolkit_views==1', { | 93 ['toolkit_views==1', { |
| 94 'dependencies': [ | 94 'dependencies': [ |
| 95 '../views/views.gyp:views', | 95 '../views/views.gyp:views', |
| 96 ], | 96 ], |
| 97 }, { | 97 }, { |
| 98 'sources/': [ | 98 'sources/': [ |
| 99 ['exclude', 'views/'], | 99 ['exclude', 'views/'], |
| 100 ], | 100 ], |
| 101 }], | 101 }], |
| 102 ['use_ash==0', { |
| 103 'sources!': [ |
| 104 'views/message_bubble_base.cc', |
| 105 'views/message_bubble_base.h', |
| 106 'views/message_center_bubble.cc', |
| 107 'views/message_center_bubble.h', |
| 108 'views/message_popup_bubble.cc', |
| 109 'views/message_popup_bubble.h', |
| 110 ], |
| 111 }], |
| 102 ['OS=="mac"', { | 112 ['OS=="mac"', { |
| 103 'dependencies': [ | 113 'dependencies': [ |
| 104 '../ui.gyp:ui_cocoa_third_party_toolkits', | 114 '../ui.gyp:ui_cocoa_third_party_toolkits', |
| 105 ], | 115 ], |
| 106 'include_dirs': [ | 116 'include_dirs': [ |
| 107 '../../third_party/GTM', | 117 '../../third_party/GTM', |
| 108 ], | 118 ], |
| 109 }], | 119 }], |
| 110 ['toolkit_views==1', { | 120 ['toolkit_views==1', { |
| 111 'dependencies': [ | 121 'dependencies': [ |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 'sources/': [ | 201 'sources/': [ |
| 192 # Exclude everything except main(). | 202 # Exclude everything except main(). |
| 193 ['exclude', '\\.(cc|mm)$'], | 203 ['exclude', '\\.(cc|mm)$'], |
| 194 ['include', '^test/run_all_unittests\\.cc$'], | 204 ['include', '^test/run_all_unittests\\.cc$'], |
| 195 ], | 205 ], |
| 196 }], | 206 }], |
| 197 ], | 207 ], |
| 198 }, # target_name: message_center_unittests | 208 }, # target_name: message_center_unittests |
| 199 ], | 209 ], |
| 200 } | 210 } |
| OLD | NEW |