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

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

Issue 18003003: Message center re-organized (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments applied Created 7 years, 5 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 | Annotate | Revision Log
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'conditions': [ 92 'conditions': [
93 ['toolkit_views==1', { 93 ['toolkit_views==1', {
94 'dependencies': [ 94 'dependencies': [
95 '../views/views.gyp:views', 95 '../views/views.gyp:views',
96 ], 96 ],
97 }, { 97 }, {
98 'sources/': [ 98 'sources/': [
99 ['exclude', 'views/'], 99 ['exclude', 'views/'],
100 ], 100 ],
101 }], 101 }],
102 ['use_ash==0', {
103 'sources!': [
104 'views/message_bubble_base.cc',
105 'views/message_bubble_base.h',
106 'views/message_center_bubble.cc',
107 'views/message_center_bubble.h',
108 'views/message_popup_bubble.cc',
109 'views/message_popup_bubble.h',
110 ],
111 }],
102 ['OS=="mac"', { 112 ['OS=="mac"', {
103 'dependencies': [ 113 'dependencies': [
104 '../ui.gyp:ui_cocoa_third_party_toolkits', 114 '../ui.gyp:ui_cocoa_third_party_toolkits',
105 ], 115 ],
106 'include_dirs': [ 116 'include_dirs': [
107 '../../third_party/GTM', 117 '../../third_party/GTM',
108 ], 118 ],
109 }], 119 }],
110 ['toolkit_views==1', { 120 ['toolkit_views==1', {
111 'dependencies': [ 121 'dependencies': [
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 'sources/': [ 201 'sources/': [
192 # Exclude everything except main(). 202 # Exclude everything except main().
193 ['exclude', '\\.(cc|mm)$'], 203 ['exclude', '\\.(cc|mm)$'],
194 ['include', '^test/run_all_unittests\\.cc$'], 204 ['include', '^test/run_all_unittests\\.cc$'],
195 ], 205 ],
196 }], 206 }],
197 ], 207 ],
198 }, # target_name: message_center_unittests 208 }, # target_name: message_center_unittests
199 ], 209 ],
200 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698