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

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

Issue 12742005: Added text line limits to collapsed and expanded notifications. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 29 matching lines...) Expand all
40 'message_center_util.h', 40 'message_center_util.h',
41 'notification.cc', 41 'notification.cc',
42 'notification.h', 42 'notification.h',
43 'notification_change_observer.h', 43 'notification_change_observer.h',
44 'notification_list.cc', 44 'notification_list.cc',
45 'notification_list.h', 45 'notification_list.h',
46 'notification_types.cc', 46 'notification_types.cc',
47 'notification_types.h', 47 'notification_types.h',
48 'notifier_settings.cc', 48 'notifier_settings.cc',
49 'notifier_settings.h', 49 'notifier_settings.h',
50 'views/bounded_label.cc',
51 'views/bounded_label.h',
50 'views/message_bubble_base.cc', 52 'views/message_bubble_base.cc',
51 'views/message_bubble_base.h', 53 'views/message_bubble_base.h',
52 'views/message_center_bubble.cc', 54 'views/message_center_bubble.cc',
53 'views/message_center_bubble.h', 55 'views/message_center_bubble.h',
54 'views/message_popup_bubble.cc', 56 'views/message_popup_bubble.cc',
55 'views/message_popup_bubble.h', 57 'views/message_popup_bubble.h',
56 'views/message_popup_collection.cc', 58 'views/message_popup_collection.cc',
57 'views/message_popup_collection.h', 59 'views/message_popup_collection.h',
58 'views/message_simple_view.cc', 60 'views/message_simple_view.cc',
59 'views/message_simple_view.h', 61 'views/message_simple_view.h',
60 'views/message_view.cc', 62 'views/message_view.cc',
61 'views/message_view.h', 63 'views/message_view.h',
62 'views/notifier_settings_view.cc', 64 'views/notifier_settings_view.cc',
63 'views/notifier_settings_view.h', 65 'views/notifier_settings_view.h',
64 'views/notification_view.cc', 66 'views/notification_view.cc',
65 'views/notification_view.h', 67 'views/notification_view.h',
66 ], 68 ],
67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 69 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
68 'msvs_disabled_warnings': [ 4267, ], 70 'msvs_disabled_warnings': [ 4267, ],
69 }, 71 }, # target_name: message_center
70 { 72 {
71 'target_name': 'message_center_unittests', 73 'target_name': 'message_center_unittests',
72 'type': 'executable', 74 'type': 'executable',
73 'dependencies': [ 75 'dependencies': [
74 '../../base/base.gyp:base',
75 '../../base/base.gyp:run_all_unittests',
76 '../../base/base.gyp:test_support_base', 76 '../../base/base.gyp:test_support_base',
77 '../../skia/skia.gyp:skia', 77 '../../skia/skia.gyp:skia',
78 '../../testing/gtest.gyp:gtest', 78 '../../testing/gtest.gyp:gtest',
79 '../ui.gyp:ui', 79 '../compositor/compositor.gyp:compositor',
80 '../compositor/compositor.gyp:compositor_test_support',
81 '../views/views.gyp:views',
80 'message_center', 82 'message_center',
81 ], 83 ],
82 'sources': [ 84 'sources': [
85 '../views/run_all_unittests.cc',
Jun Mukai 2013/03/14 09:26:47 I don't think that's a good idea. Please fix view
dharcourt 2013/03/14 20:21:57 Ah, thanks for pointing that out. I didn't know ho
83 'message_center_tray_unittest.cc', 86 'message_center_tray_unittest.cc',
84 'notification_list_unittest.cc', 87 'notification_list_unittest.cc',
88 'views/bounded_label_unittest.cc',
85 ], 89 ],
86 }, 90 }, # target_name: message_center_unittests
87 ], 91 ],
88 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698