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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 'message_popup_bubble.cc', | 45 'message_popup_bubble.cc', |
46 'message_popup_bubble.h', | 46 'message_popup_bubble.h', |
47 'message_simple_view.cc', | 47 'message_simple_view.cc', |
48 'message_simple_view.h', | 48 'message_simple_view.h', |
49 'message_view.cc', | 49 'message_view.cc', |
50 'message_view.h', | 50 'message_view.h', |
51 'notification.cc', | 51 'notification.cc', |
52 'notification.h', | 52 'notification.h', |
53 'notification_list.cc', | 53 'notification_list.cc', |
54 'notification_list.h', | 54 'notification_list.h', |
| 55 'notification_types.cc', |
| 56 'notification_types.h', |
55 'notification_view.cc', | 57 'notification_view.cc', |
56 'notification_view.h', | 58 'notification_view.h', |
57 'notifier_settings_view.cc', | 59 'notifier_settings_view.cc', |
58 'notifier_settings_view.h', | 60 'notifier_settings_view.h', |
59 'notifier_settings_view_delegate.cc', | 61 'notifier_settings_view_delegate.cc', |
60 'notifier_settings_view_delegate.h', | 62 'notifier_settings_view_delegate.h', |
61 'quiet_mode_bubble.cc', | 63 'quiet_mode_bubble.cc', |
62 'quiet_mode_bubble.h', | 64 'quiet_mode_bubble.h', |
63 ], | 65 ], |
64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 66 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
65 'msvs_disabled_warnings': [ 4267, ], | 67 'msvs_disabled_warnings': [ 4267, ], |
66 }, | 68 }, |
67 { | 69 { |
68 'target_name': 'message_center_unittests', | 70 'target_name': 'message_center_unittests', |
69 'type': 'executable', | 71 'type': 'executable', |
70 'dependencies': [ | 72 'dependencies': [ |
71 '../../base/base.gyp:base', | 73 '../../base/base.gyp:base', |
| 74 '../../base/base.gyp:run_all_unittests', |
72 '../../base/base.gyp:test_support_base', | 75 '../../base/base.gyp:test_support_base', |
73 '../../skia/skia.gyp:skia', | 76 '../../skia/skia.gyp:skia', |
74 '../../testing/gtest.gyp:gtest', | 77 '../../testing/gtest.gyp:gtest', |
75 '../../testing/gtest.gyp:gtest_main', | |
76 '../ui.gyp:ui', | 78 '../ui.gyp:ui', |
77 'message_center', | 79 'message_center', |
78 ], | 80 ], |
79 'sources': [ | 81 'sources': [ |
80 'message_center_tray_unittest.cc', | 82 'message_center_tray_unittest.cc', |
81 'notification_list_unittest.cc', | 83 'notification_list_unittest.cc', |
82 ], | 84 ], |
83 }, | 85 }, |
84 ], | 86 ], |
85 } | 87 } |
OLD | NEW |