| 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 '../gfx/gfx.gyp:gfx', | 20 '../gfx/gfx.gyp:gfx', |
| 21 '../gfx/gfx.gyp:gfx_geometry', |
| 21 '../resources/ui_resources.gyp:ui_resources', | 22 '../resources/ui_resources.gyp:ui_resources', |
| 22 '../ui.gyp:ui', | 23 '../ui.gyp:ui', |
| 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', |
| 30 'cocoa/popup_collection.h', | 31 'cocoa/popup_collection.h', |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 ], | 153 ], |
| 153 }, # target_name: message_center | 154 }, # target_name: message_center |
| 154 { | 155 { |
| 155 'target_name': 'message_center_test_support', | 156 'target_name': 'message_center_test_support', |
| 156 'type': 'static_library', | 157 'type': 'static_library', |
| 157 'dependencies': [ | 158 'dependencies': [ |
| 158 '../../base/base.gyp:base', | 159 '../../base/base.gyp:base', |
| 159 '../../base/base.gyp:test_support_base', | 160 '../../base/base.gyp:test_support_base', |
| 160 '../../skia/skia.gyp:skia', | 161 '../../skia/skia.gyp:skia', |
| 161 '../gfx/gfx.gyp:gfx', | 162 '../gfx/gfx.gyp:gfx', |
| 163 '../gfx/gfx.gyp:gfx_geometry', |
| 162 '../ui.gyp:ui', | 164 '../ui.gyp:ui', |
| 163 'message_center', | 165 'message_center', |
| 164 ], | 166 ], |
| 165 'sources': [ | 167 'sources': [ |
| 166 'fake_message_center.h', | 168 'fake_message_center.h', |
| 167 'fake_message_center.cc', | 169 'fake_message_center.cc', |
| 168 'fake_notifier_settings_provider.h', | 170 'fake_notifier_settings_provider.h', |
| 169 'fake_notifier_settings_provider.cc', | 171 'fake_notifier_settings_provider.cc', |
| 170 ], | 172 ], |
| 171 }, # target_name: message_center_test_support | 173 }, # target_name: message_center_test_support |
| 172 { | 174 { |
| 173 'target_name': 'message_center_unittests', | 175 'target_name': 'message_center_unittests', |
| 174 'type': 'executable', | 176 'type': 'executable', |
| 175 'dependencies': [ | 177 'dependencies': [ |
| 176 '../../base/base.gyp:base', | 178 '../../base/base.gyp:base', |
| 177 '../../base/base.gyp:test_support_base', | 179 '../../base/base.gyp:test_support_base', |
| 178 '../../chrome/chrome_resources.gyp:packed_resources', | 180 '../../chrome/chrome_resources.gyp:packed_resources', |
| 179 '../../skia/skia.gyp:skia', | 181 '../../skia/skia.gyp:skia', |
| 180 '../../testing/gtest.gyp:gtest', | 182 '../../testing/gtest.gyp:gtest', |
| 181 '../../url/url.gyp:url_lib', | 183 '../../url/url.gyp:url_lib', |
| 182 '../../url/url.gyp:url_lib', | 184 '../../url/url.gyp:url_lib', |
| 183 '../gfx/gfx.gyp:gfx', | 185 '../gfx/gfx.gyp:gfx', |
| 186 '../gfx/gfx.gyp:gfx_geometry', |
| 184 '../resources/ui_resources.gyp:ui_resources', | 187 '../resources/ui_resources.gyp:ui_resources', |
| 185 '../ui.gyp:ui', | 188 '../ui.gyp:ui', |
| 186 '../ui_unittests.gyp:run_ui_unittests', | 189 '../ui_unittests.gyp:run_ui_unittests', |
| 187 'message_center', | 190 'message_center', |
| 188 'message_center_test_support', | 191 'message_center_test_support', |
| 189 ], | 192 ], |
| 190 'sources': [ | 193 'sources': [ |
| 191 'cocoa/notification_controller_unittest.mm', | 194 'cocoa/notification_controller_unittest.mm', |
| 192 'cocoa/popup_collection_unittest.mm', | 195 'cocoa/popup_collection_unittest.mm', |
| 193 'cocoa/popup_controller_unittest.mm', | 196 'cocoa/popup_controller_unittest.mm', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 # See http://crbug.com/162998#c4 for why this is needed. | 239 # See http://crbug.com/162998#c4 for why this is needed. |
| 237 ['OS=="linux" and linux_use_tcmalloc==1', { | 240 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 238 'dependencies': [ | 241 'dependencies': [ |
| 239 '../../base/allocator/allocator.gyp:allocator', | 242 '../../base/allocator/allocator.gyp:allocator', |
| 240 ], | 243 ], |
| 241 }], | 244 }], |
| 242 ], | 245 ], |
| 243 }, # target_name: message_center_unittests | 246 }, # target_name: message_center_unittests |
| 244 ], | 247 ], |
| 245 } | 248 } |
| OLD | NEW |