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

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

Issue 11819048: Implement message center on Windows (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address petewil & stevenjb comments. Move MessageCenterTrayDelegate to its own class. Created 7 years, 11 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
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 16 matching lines...) Expand all
27 'sources': [ 27 'sources': [
28 'message_bubble_base.cc', 28 'message_bubble_base.cc',
29 'message_bubble_base.h', 29 'message_bubble_base.h',
30 'message_center.cc', 30 'message_center.cc',
31 'message_center.h', 31 'message_center.h',
32 'message_center_bubble.cc', 32 'message_center_bubble.cc',
33 'message_center_bubble.h', 33 'message_center_bubble.h',
34 'message_center_constants.cc', 34 'message_center_constants.cc',
35 'message_center_constants.h', 35 'message_center_constants.h',
36 'message_center_export.h', 36 'message_center_export.h',
37 'message_center_tray.cc',
38 'message_center_tray.h',
39 'message_center_tray_delegate.h',
37 'message_center_switches.cc', 40 'message_center_switches.cc',
38 'message_center_switches.h', 41 'message_center_switches.h',
39 'message_popup_bubble.cc', 42 'message_popup_bubble.cc',
40 'message_popup_bubble.h', 43 'message_popup_bubble.h',
41 'message_view.cc', 44 'message_view.cc',
42 'message_view.h', 45 'message_view.h',
43 'notification_list.cc', 46 'notification_list.cc',
44 'notification_list.h', 47 'notification_list.h',
45 'notification_view.cc', 48 'notification_view.cc',
46 'notification_view.h', 49 'notification_view.h',
47 'notifier_settings.cc', 50 'notifier_settings.cc',
48 'notifier_settings.h', 51 'notifier_settings.h',
49 'quiet_mode_bubble.cc', 52 'quiet_mode_bubble.cc',
50 'quiet_mode_bubble.h', 53 'quiet_mode_bubble.h',
51 ], 54 ],
52 }, 55 },
53 { 56 {
54 'target_name': 'message_center_unittests', 57 'target_name': 'message_center_unittests',
55 'type': 'executable', 58 'type': 'executable',
56 'dependencies': [ 59 'dependencies': [
57 '../../base/base.gyp:base', 60 '../../base/base.gyp:base',
58 '../../base/base.gyp:test_support_base', 61 '../../base/base.gyp:test_support_base',
59 '../../skia/skia.gyp:skia', 62 '../../skia/skia.gyp:skia',
60 '../../testing/gtest.gyp:gtest', 63 '../../testing/gtest.gyp:gtest',
61 '../../testing/gtest.gyp:gtest_main', 64 '../../testing/gtest.gyp:gtest_main',
62 '../ui.gyp:ui', 65 '../ui.gyp:ui',
63 'message_center', 66 'message_center',
64 ], 67 ],
65 'sources': [ 68 'sources': [
69 'message_center_tray_unittest.cc',
66 'notification_list_unittest.cc', 70 'notification_list_unittest.cc',
67 ], 71 ],
68 }, 72 },
69 ], 73 ],
70 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698