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

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

Issue 12757003: Revert 188637 "Added text line limits to collapsed and expanded ..." (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',
51 'views/message_bubble_base.cc', 49 'views/message_bubble_base.cc',
52 'views/message_bubble_base.h', 50 'views/message_bubble_base.h',
53 'views/message_center_bubble.cc', 51 'views/message_center_bubble.cc',
54 'views/message_center_bubble.h', 52 'views/message_center_bubble.h',
55 'views/message_popup_bubble.cc', 53 'views/message_popup_bubble.cc',
56 'views/message_popup_bubble.h', 54 'views/message_popup_bubble.h',
57 'views/message_popup_collection.cc', 55 'views/message_popup_collection.cc',
58 'views/message_popup_collection.h', 56 'views/message_popup_collection.h',
59 'views/message_simple_view.cc', 57 'views/message_simple_view.cc',
60 'views/message_simple_view.h', 58 'views/message_simple_view.h',
(...skipping 10 matching lines...) Expand all
71 ['toolkit_views==1', { 69 ['toolkit_views==1', {
72 'dependencies': [ 70 'dependencies': [
73 '../views/views.gyp:views', 71 '../views/views.gyp:views',
74 ], 72 ],
75 }, { 73 }, {
76 'sources/': [ 74 'sources/': [
77 ['exclude', 'views/'], 75 ['exclude', 'views/'],
78 ], 76 ],
79 }], 77 }],
80 ], 78 ],
81 }, # target_name: message_center 79 },
82 { 80 {
83 'target_name': 'message_center_unittests', 81 'target_name': 'message_center_unittests',
84 'type': 'executable', 82 'type': 'executable',
85 'dependencies': [ 83 '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',
89 'message_center', 90 'message_center',
90 ], 91 ],
91 'sources': [ 92 'sources': [
92 'message_center_tray_unittest.cc', 93 'message_center_tray_unittest.cc',
93 'notification_list_unittest.cc', 94 'notification_list_unittest.cc',
94 'run_all_unittests.cc',
95 ], 95 ],
96 'conditions': [ 96 },
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
111 ], 97 ],
112 } 98 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/notifications/galore/app/manifest.json ('k') | ui/message_center/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698