| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 'notification_types.cc', | 65 'notification_types.cc', |
| 66 'notification_types.h', | 66 'notification_types.h', |
| 67 'notifier_settings.cc', | 67 'notifier_settings.cc', |
| 68 'notifier_settings.h', | 68 'notifier_settings.h', |
| 69 'popup_timer.cc', | 69 'popup_timer.cc', |
| 70 'popup_timer.h', | 70 'popup_timer.h', |
| 71 'popup_timers_controller.cc', | 71 'popup_timers_controller.cc', |
| 72 'popup_timers_controller.h', | 72 'popup_timers_controller.h', |
| 73 'views/bounded_label.cc', | 73 'views/bounded_label.cc', |
| 74 'views/bounded_label.h', | 74 'views/bounded_label.h', |
| 75 "views/custom_notification_view.cc", |
| 76 "views/custom_notification_view.h", |
| 75 'views/constants.h', | 77 'views/constants.h', |
| 76 'views/desktop_popup_alignment_delegate.cc', | 78 'views/desktop_popup_alignment_delegate.cc', |
| 77 'views/desktop_popup_alignment_delegate.h', | 79 'views/desktop_popup_alignment_delegate.h', |
| 78 'views/message_bubble_base.cc', | 80 'views/message_bubble_base.cc', |
| 79 'views/message_bubble_base.h', | 81 'views/message_bubble_base.h', |
| 80 'views/message_center_bubble.cc', | 82 'views/message_center_bubble.cc', |
| 81 'views/message_center_bubble.h', | 83 'views/message_center_bubble.h', |
| 82 'views/message_center_button_bar.cc', | 84 'views/message_center_button_bar.cc', |
| 83 'views/message_center_button_bar.h', | 85 'views/message_center_button_bar.h', |
| 84 'views/message_center_controller.h', | 86 'views/message_center_controller.h', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 ['toolkit_views==1 and OS!="mac"', { | 217 ['toolkit_views==1 and OS!="mac"', { |
| 216 'dependencies': [ | 218 'dependencies': [ |
| 217 # Compositor is needed by message_center_view_unittest.cc | 219 # Compositor is needed by message_center_view_unittest.cc |
| 218 # and for the fonts used by bounded_label_unittest.cc. | 220 # and for the fonts used by bounded_label_unittest.cc. |
| 219 '../compositor/compositor.gyp:compositor', | 221 '../compositor/compositor.gyp:compositor', |
| 220 '../views/views.gyp:views', | 222 '../views/views.gyp:views', |
| 221 '../views/views.gyp:views_test_support', | 223 '../views/views.gyp:views_test_support', |
| 222 ], | 224 ], |
| 223 'sources': [ | 225 'sources': [ |
| 224 'views/bounded_label_unittest.cc', | 226 'views/bounded_label_unittest.cc', |
| 227 'views/custom_notification_view_unittest.cc', |
| 225 'views/message_center_view_unittest.cc', | 228 'views/message_center_view_unittest.cc', |
| 226 'views/message_popup_collection_unittest.cc', | 229 'views/message_popup_collection_unittest.cc', |
| 227 'views/notification_view_unittest.cc', | 230 'views/notification_view_unittest.cc', |
| 228 'views/notifier_settings_view_unittest.cc', | 231 'views/notifier_settings_view_unittest.cc', |
| 229 ], | 232 ], |
| 230 }], | 233 }], |
| 231 ['notifications==0', { # Android and iOS. | 234 ['notifications==0', { # Android and iOS. |
| 232 'sources/': [ | 235 'sources/': [ |
| 233 # Exclude everything except main(). | 236 # Exclude everything except main(). |
| 234 ['exclude', '\\.(cc|mm)$'], | 237 ['exclude', '\\.(cc|mm)$'], |
| (...skipping 23 matching lines...) Expand all Loading... |
| 258 'dependencies': [ | 261 'dependencies': [ |
| 259 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 262 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 260 ], | 263 ], |
| 261 }], | 264 }], |
| 262 ], | 265 ], |
| 263 }, | 266 }, |
| 264 ], | 267 ], |
| 265 }], | 268 }], |
| 266 ], | 269 ], |
| 267 } | 270 } |
| OLD | NEW |