| 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', | |
| 20 '../base/ui_base.gyp:ui_base', | 19 '../base/ui_base.gyp:ui_base', |
| 21 '../gfx/gfx.gyp:gfx', | 20 '../gfx/gfx.gyp:gfx', |
| 22 '../gfx/gfx.gyp:gfx_geometry', | 21 '../gfx/gfx.gyp:gfx_geometry', |
| 23 '../resources/ui_resources.gyp:ui_resources', | 22 '../resources/ui_resources.gyp:ui_resources', |
| 23 '../strings/ui_strings.gyp:ui_strings', |
| 24 ], | 24 ], |
| 25 'defines': [ | 25 'defines': [ |
| 26 'MESSAGE_CENTER_IMPLEMENTATION', | 26 'MESSAGE_CENTER_IMPLEMENTATION', |
| 27 ], | 27 ], |
| 28 'sources': [ | 28 'sources': [ |
| 29 'cocoa/notification_controller.h', | 29 'cocoa/notification_controller.h', |
| 30 'cocoa/notification_controller.mm', | 30 'cocoa/notification_controller.mm', |
| 31 'cocoa/opaque_views.h', | 31 'cocoa/opaque_views.h', |
| 32 'cocoa/opaque_views.mm', | 32 'cocoa/opaque_views.mm', |
| 33 'cocoa/popup_collection.h', | 33 'cocoa/popup_collection.h', |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 # See http://crbug.com/162998#c4 for why this is needed. | 238 # See http://crbug.com/162998#c4 for why this is needed. |
| 239 ['OS=="linux" and use_allocator!="none"', { | 239 ['OS=="linux" and use_allocator!="none"', { |
| 240 'dependencies': [ | 240 'dependencies': [ |
| 241 '../../base/allocator/allocator.gyp:allocator', | 241 '../../base/allocator/allocator.gyp:allocator', |
| 242 ], | 242 ], |
| 243 }], | 243 }], |
| 244 ], | 244 ], |
| 245 }, # target_name: message_center_unittests | 245 }, # target_name: message_center_unittests |
| 246 ], | 246 ], |
| 247 } | 247 } |
| OLD | NEW |