Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: ui/message_center/message_center.gyp

Issue 1979583003: Support notifications with custom content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@messageview-close-button
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698