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

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 28 matching lines...) Expand all
39 'message_center_util.h', 39 'message_center_util.h',
40 'notification.cc', 40 'notification.cc',
41 'notification.h', 41 'notification.h',
42 'notification_change_observer.h', 42 'notification_change_observer.h',
43 'notification_list.cc', 43 'notification_list.cc',
44 'notification_list.h', 44 'notification_list.h',
45 'notification_types.cc', 45 'notification_types.cc',
46 'notification_types.h', 46 'notification_types.h',
47 'notifier_settings.cc', 47 'notifier_settings.cc',
48 'notifier_settings.h', 48 'notifier_settings.h',
49 'views/bounded_label.cc',
50 'views/bounded_label.h',
49 'views/message_bubble_base.cc', 51 'views/message_bubble_base.cc',
50 'views/message_bubble_base.h', 52 'views/message_bubble_base.h',
51 'views/message_center_bubble.cc', 53 'views/message_center_bubble.cc',
52 'views/message_center_bubble.h', 54 'views/message_center_bubble.h',
53 'views/message_popup_bubble.cc', 55 'views/message_popup_bubble.cc',
54 'views/message_popup_bubble.h', 56 'views/message_popup_bubble.h',
55 'views/message_popup_collection.cc', 57 'views/message_popup_collection.cc',
56 'views/message_popup_collection.h', 58 'views/message_popup_collection.h',
57 'views/message_simple_view.cc', 59 'views/message_simple_view.cc',
58 'views/message_simple_view.h', 60 'views/message_simple_view.h',
(...skipping 10 matching lines...) Expand all
69 ['toolkit_views==1', { 71 ['toolkit_views==1', {
70 'dependencies': [ 72 'dependencies': [
71 '../views/views.gyp:views', 73 '../views/views.gyp:views',
72 ], 74 ],
73 }, { 75 }, {
74 'sources/': [ 76 'sources/': [
75 ['exclude', 'views/'], 77 ['exclude', 'views/'],
76 ], 78 ],
77 }], 79 }],
78 ], 80 ],
79 }, 81 }, # target_name: message_center
80 { 82 {
81 'target_name': 'message_center_unittests', 83 'target_name': 'message_center_unittests',
82 'type': 'executable', 84 'type': 'executable',
83 'dependencies': [ 85 'dependencies': [
84 '../../base/base.gyp:base',
85 '../../base/base.gyp:run_all_unittests',
86 '../../base/base.gyp:test_support_base', 86 '../../base/base.gyp:test_support_base',
87 '../../skia/skia.gyp:skia', 87 '../../skia/skia.gyp:skia',
88 '../../testing/gtest.gyp:gtest', 88 '../../testing/gtest.gyp:gtest',
89 '../ui.gyp:ui',
90 'message_center', 89 'message_center',
91 ], 90 ],
92 'sources': [ 91 'sources': [
93 'message_center_tray_unittest.cc', 92 'message_center_tray_unittest.cc',
94 'notification_list_unittest.cc', 93 'notification_list_unittest.cc',
94 'run_all_unittests.cc',
95 ], 95 ],
96 }, 96 'conditions': [
97 ['toolkit_views==1', {
98 'dependencies': [
99 # The BoundedLabel unit tests use fonts, and fonts require the
100 # compositor and its test support.
101 '../compositor/compositor.gyp:compositor',
102 '../compositor/compositor.gyp:compositor_test_support',
103 '../views/views.gyp:views',
104 ],
105 'sources': [
106 'views/bounded_label_unittest.cc',
107 ],
108 }],
109 ],
110 }, # target_name: message_center_unittests
97 ], 111 ],
98 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698