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

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

Issue 11229022: Move ash/system/web_notification message_center to ui/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again. Created 8 years, 1 month 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
« no previous file with comments | « ui/message_center/message_center.cc ('k') | ui/message_center/message_center_bubble.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
10 'targets': [ 9 'targets': [
11 { 10 {
12 'target_name': 'oak', 11 'target_name': 'message_center',
13 'type': '<(component)', 12 'type': '<(component)',
14 'dependencies': [ 13 'dependencies': [
15 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
16 '../../base/base.gyp:base_i18n',
17 '../../build/temp_gyp/googleurl.gyp:googleurl',
18 '../../skia/skia.gyp:skia', 15 '../../skia/skia.gyp:skia',
19 '../aura/aura.gyp:aura', 16 '../base/strings/ui_strings.gyp:ui_strings',
20 '../compositor/compositor.gyp:compositor', 17 '../compositor/compositor.gyp:compositor',
21 '../ui.gyp:ui', 18 '../ui.gyp:ui',
22 '../ui.gyp:ui_resources', 19 '../ui.gyp:ui_resources',
23 '../views/views.gyp:views', 20 '../views/views.gyp:views',
24 ], 21 ],
25 'defines': [ 22 'defines': [
26 'OAK_IMPLEMENTATION', 23 'MESSAGE_CENTER_IMPLEMENTATION',
27 ], 24 ],
28 'sources': [ 25 'sources': [
29 # All .cc, .h under oak, except unittests 26 » 'message_bubble_base.cc',
30 'oak.h', 27 » 'message_bubble_base.h',
31 'oak_aura_window_display.cc', 28 » 'message_center.cc',
32 'oak_aura_window_display.h', 29 » 'message_center.h',
33 'oak_export.h', 30 » 'message_center_bubble.cc',
34 'oak_pretty_print.cc', 31 » 'message_center_bubble.h',
35 'oak_pretty_print.h', 32 » 'message_center_export.h',
36 'oak_tree_model.cc', 33 » 'message_popup_bubble.cc',
37 'oak_tree_model.h', 34 » 'message_popup_bubble.h',
38 'oak_window.cc', 35 » 'message_view.cc',
39 'oak_window.h', 36 » 'message_view.h',
40 'oak_details_model.h', 37 » 'notification_list.cc',
38 » 'notification_list.h',
41 ], 39 ],
42 }, 40 },
43 ], 41 ],
44 } 42 }
OLDNEW
« no previous file with comments | « ui/message_center/message_center.cc ('k') | ui/message_center/message_center_bubble.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698