OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |