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 { |
11 'target_name': 'message_center', | 11 'target_name': 'message_center', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
15 '../../base/base.gyp:base_i18n', | 15 '../../base/base.gyp:base_i18n', |
16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
17 '../../skia/skia.gyp:skia', | 17 '../../skia/skia.gyp:skia', |
18 '../../url/url.gyp:url_lib', | 18 '../../url/url.gyp:url_lib', |
19 '../base/strings/ui_strings.gyp:ui_strings', | 19 '../base/strings/ui_strings.gyp:ui_strings', |
| 20 '../events/events.gyp:events', |
20 '../gfx/gfx.gyp:gfx', | 21 '../gfx/gfx.gyp:gfx', |
21 '../ui.gyp:ui', | 22 '../ui.gyp:ui', |
22 '../ui.gyp:ui_resources', | 23 '../ui.gyp:ui_resources', |
23 ], | 24 ], |
24 'defines': [ | 25 'defines': [ |
25 'MESSAGE_CENTER_IMPLEMENTATION', | 26 'MESSAGE_CENTER_IMPLEMENTATION', |
26 ], | 27 ], |
27 'sources': [ | 28 'sources': [ |
28 'cocoa/notification_controller.h', | 29 'cocoa/notification_controller.h', |
29 'cocoa/notification_controller.mm', | 30 'cocoa/notification_controller.mm', |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 }], | 137 }], |
137 ], | 138 ], |
138 }, # target_name: message_center | 139 }, # target_name: message_center |
139 { | 140 { |
140 'target_name': 'message_center_test_support', | 141 'target_name': 'message_center_test_support', |
141 'type': 'static_library', | 142 'type': 'static_library', |
142 'dependencies': [ | 143 'dependencies': [ |
143 '../../base/base.gyp:base', | 144 '../../base/base.gyp:base', |
144 '../../base/base.gyp:test_support_base', | 145 '../../base/base.gyp:test_support_base', |
145 '../../skia/skia.gyp:skia', | 146 '../../skia/skia.gyp:skia', |
| 147 '../events/events.gyp:events', |
146 '../gfx/gfx.gyp:gfx', | 148 '../gfx/gfx.gyp:gfx', |
147 '../ui.gyp:ui', | 149 '../ui.gyp:ui', |
148 'message_center', | 150 'message_center', |
149 ], | 151 ], |
150 'sources': [ | 152 'sources': [ |
151 'fake_message_center.h', | 153 'fake_message_center.h', |
152 'fake_message_center.cc', | 154 'fake_message_center.cc', |
153 'fake_notifier_settings_provider.h', | 155 'fake_notifier_settings_provider.h', |
154 'fake_notifier_settings_provider.cc', | 156 'fake_notifier_settings_provider.cc', |
155 ], | 157 ], |
156 }, # target_name: message_center_test_support | 158 }, # target_name: message_center_test_support |
157 { | 159 { |
158 'target_name': 'message_center_unittests', | 160 'target_name': 'message_center_unittests', |
159 'type': 'executable', | 161 'type': 'executable', |
160 'dependencies': [ | 162 'dependencies': [ |
161 '../../base/base.gyp:base', | 163 '../../base/base.gyp:base', |
162 '../../base/base.gyp:test_support_base', | 164 '../../base/base.gyp:test_support_base', |
163 '../../skia/skia.gyp:skia', | 165 '../../skia/skia.gyp:skia', |
164 '../../testing/gtest.gyp:gtest', | 166 '../../testing/gtest.gyp:gtest', |
| 167 '../events/events.gyp:events', |
165 '../gfx/gfx.gyp:gfx', | 168 '../gfx/gfx.gyp:gfx', |
166 '../ui.gyp:run_ui_unittests', | 169 '../ui.gyp:run_ui_unittests', |
167 '../ui.gyp:ui', | 170 '../ui.gyp:ui', |
168 '../../url/url.gyp:url_lib', | 171 '../../url/url.gyp:url_lib', |
169 'message_center', | 172 'message_center', |
170 'message_center_test_support', | 173 'message_center_test_support', |
171 ], | 174 ], |
172 'sources': [ | 175 'sources': [ |
173 'cocoa/notification_controller_unittest.mm', | 176 'cocoa/notification_controller_unittest.mm', |
174 'cocoa/popup_collection_unittest.mm', | 177 'cocoa/popup_collection_unittest.mm', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 # See http://crbug.com/162998#c4 for why this is needed. | 215 # See http://crbug.com/162998#c4 for why this is needed. |
213 ['OS=="linux" and linux_use_tcmalloc==1', { | 216 ['OS=="linux" and linux_use_tcmalloc==1', { |
214 'dependencies': [ | 217 'dependencies': [ |
215 '../../base/allocator/allocator.gyp:allocator', | 218 '../../base/allocator/allocator.gyp:allocator', |
216 ], | 219 ], |
217 }], | 220 }], |
218 ], | 221 ], |
219 }, # target_name: message_center_unittests | 222 }, # target_name: message_center_unittests |
220 ], | 223 ], |
221 } | 224 } |
OLD | NEW |