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 25 matching lines...) Expand all Loading... |
36 'message_center_constants.h', | 36 'message_center_constants.h', |
37 'message_center_export.h', | 37 'message_center_export.h', |
38 'message_popup_bubble.cc', | 38 'message_popup_bubble.cc', |
39 'message_popup_bubble.h', | 39 'message_popup_bubble.h', |
40 'message_simple_view.cc', | 40 'message_simple_view.cc', |
41 'message_simple_view.h', | 41 'message_simple_view.h', |
42 'message_view.cc', | 42 'message_view.cc', |
43 'message_view.h', | 43 'message_view.h', |
44 'message_view_factory.cc', | 44 'message_view_factory.cc', |
45 'message_view_factory.h', | 45 'message_view_factory.h', |
46 'message_view_multiple.cc', | |
47 'message_view_multiple.h', | |
48 'notification_list.cc', | 46 'notification_list.cc', |
49 'notification_list.h', | 47 'notification_list.h', |
| 48 'notification_view.cc', |
| 49 'notification_view.h', |
50 'quiet_mode_bubble.cc', | 50 'quiet_mode_bubble.cc', |
51 'quiet_mode_bubble.h', | 51 'quiet_mode_bubble.h', |
52 ], | 52 ], |
53 }, | 53 }, |
54 { | 54 { |
55 'target_name': 'message_center_unittests', | 55 'target_name': 'message_center_unittests', |
56 'type': 'executable', | 56 'type': 'executable', |
57 'dependencies': [ | 57 'dependencies': [ |
58 '../../base/base.gyp:base', | 58 '../../base/base.gyp:base', |
59 '../../base/base.gyp:test_support_base', | 59 '../../base/base.gyp:test_support_base', |
60 '../../skia/skia.gyp:skia', | 60 '../../skia/skia.gyp:skia', |
61 '../../testing/gtest.gyp:gtest', | 61 '../../testing/gtest.gyp:gtest', |
62 '../../testing/gtest.gyp:gtest_main', | 62 '../../testing/gtest.gyp:gtest_main', |
63 '../ui.gyp:ui', | 63 '../ui.gyp:ui', |
64 'message_center', | 64 'message_center', |
65 ], | 65 ], |
66 'sources': [ | 66 'sources': [ |
67 'notification_list_unittest.cc', | 67 'notification_list_unittest.cc', |
68 ], | 68 ], |
69 }, | 69 }, |
70 ], | 70 ], |
71 } | 71 } |
OLD | NEW |