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

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

Issue 369573004: Separate the logic of popup alignment and workarea handling as delegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 years, 5 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 | Annotate | Revision Log
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_blocker.h', 65 'notification_blocker.h',
66 'notification_list.cc', 66 'notification_list.cc',
67 'notification_list.h', 67 'notification_list.h',
68 'notification_types.cc', 68 'notification_types.cc',
69 'notification_types.h', 69 'notification_types.h',
70 'notifier_settings.cc', 70 'notifier_settings.cc',
71 'notifier_settings.h', 71 'notifier_settings.h',
72 'views/bounded_label.cc', 72 'views/bounded_label.cc',
73 'views/bounded_label.h', 73 'views/bounded_label.h',
74 'views/constants.h', 74 'views/constants.h',
75 'views/desktop_popup_alignment_delegate.cc',
76 'views/desktop_popup_alignment_delegate.h',
75 'views/message_bubble_base.cc', 77 'views/message_bubble_base.cc',
76 'views/message_bubble_base.h', 78 'views/message_bubble_base.h',
77 'views/message_center_controller.h', 79 'views/message_center_controller.h',
78 'views/message_center_bubble.cc', 80 'views/message_center_bubble.cc',
79 'views/message_center_bubble.h', 81 'views/message_center_bubble.h',
80 'views/message_center_button_bar.cc', 82 'views/message_center_button_bar.cc',
81 'views/message_center_button_bar.h', 83 'views/message_center_button_bar.h',
82 'views/message_center_view.cc', 84 'views/message_center_view.cc',
83 'views/message_center_view.h', 85 'views/message_center_view.h',
84 'views/message_popup_collection.cc', 86 'views/message_popup_collection.cc',
85 'views/message_popup_collection.h', 87 'views/message_popup_collection.h',
86 'views/message_view.cc', 88 'views/message_view.cc',
87 'views/message_view.h', 89 'views/message_view.h',
88 'views/message_view_context_menu_controller.cc', 90 'views/message_view_context_menu_controller.cc',
89 'views/message_view_context_menu_controller.h', 91 'views/message_view_context_menu_controller.h',
90 'views/notifier_settings_view.cc', 92 'views/notifier_settings_view.cc',
91 'views/notifier_settings_view.h', 93 'views/notifier_settings_view.h',
92 'views/notification_button.cc', 94 'views/notification_button.cc',
93 'views/notification_button.h', 95 'views/notification_button.h',
94 'views/notification_view.cc', 96 'views/notification_view.cc',
95 'views/notification_view.h', 97 'views/notification_view.h',
96 'views/padded_button.cc', 98 'views/padded_button.cc',
97 'views/padded_button.h', 99 'views/padded_button.h',
100 'views/popup_alignment_delegate.cc',
101 'views/popup_alignment_delegate.h',
98 'views/proportional_image_view.cc', 102 'views/proportional_image_view.cc',
99 'views/proportional_image_view.h', 103 'views/proportional_image_view.h',
100 'views/toast_contents_view.cc', 104 'views/toast_contents_view.cc',
101 'views/toast_contents_view.h', 105 'views/toast_contents_view.h',
102 ], 106 ],
103 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 107 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
104 'msvs_disabled_warnings': [ 4267, ], 108 'msvs_disabled_warnings': [ 4267, ],
105 'conditions': [ 109 'conditions': [
106 # This condition is for Windows 8 Metro mode support. We need to 110 # This condition is for Windows 8 Metro mode support. We need to
107 # specify a particular desktop during widget creation in that case. 111 # specify a particular desktop during widget creation in that case.
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 # See http://crbug.com/162998#c4 for why this is needed. 242 # See http://crbug.com/162998#c4 for why this is needed.
239 ['OS=="linux" and use_allocator!="none"', { 243 ['OS=="linux" and use_allocator!="none"', {
240 'dependencies': [ 244 'dependencies': [
241 '../../base/allocator/allocator.gyp:allocator', 245 '../../base/allocator/allocator.gyp:allocator',
242 ], 246 ],
243 }], 247 }],
244 ], 248 ],
245 }, # target_name: message_center_unittests 249 }, # target_name: message_center_unittests
246 ], 250 ],
247 } 251 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698