| 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     { | 
| (...skipping 10 matching lines...) Expand all  Loading... | 
| 21         '../gfx/gfx.gyp:gfx', | 21         '../gfx/gfx.gyp:gfx', | 
| 22         '../gfx/gfx.gyp:gfx_geometry', | 22         '../gfx/gfx.gyp:gfx_geometry', | 
| 23         '../resources/ui_resources.gyp:ui_resources', | 23         '../resources/ui_resources.gyp:ui_resources', | 
| 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', | 
|  | 32         'cocoa/opaque_views.mm', | 
| 31         'cocoa/popup_collection.h', | 33         'cocoa/popup_collection.h', | 
| 32         'cocoa/popup_collection.mm', | 34         'cocoa/popup_collection.mm', | 
| 33         'cocoa/popup_controller.h', | 35         'cocoa/popup_controller.h', | 
| 34         'cocoa/popup_controller.mm', | 36         'cocoa/popup_controller.mm', | 
| 35         'cocoa/settings_controller.h', | 37         'cocoa/settings_controller.h', | 
| 36         'cocoa/settings_controller.mm', | 38         'cocoa/settings_controller.mm', | 
| 37         'cocoa/settings_entry_view.h', | 39         'cocoa/settings_entry_view.h', | 
| 38         'cocoa/settings_entry_view.mm', | 40         'cocoa/settings_entry_view.mm', | 
| 39         'cocoa/status_item_view.h', | 41         'cocoa/status_item_view.h', | 
| 40         'cocoa/status_item_view.mm', | 42         'cocoa/status_item_view.mm', | 
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 230         # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 232         # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 
| 231         ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
     malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { | 233         ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
     malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { | 
| 232           'dependencies': [ | 234           'dependencies': [ | 
| 233             '../../base/allocator/allocator.gyp:allocator', | 235             '../../base/allocator/allocator.gyp:allocator', | 
| 234           ], | 236           ], | 
| 235         }], | 237         }], | 
| 236       ], | 238       ], | 
| 237     },  # target_name: message_center_unittests | 239     },  # target_name: message_center_unittests | 
| 238   ], | 240   ], | 
| 239 } | 241 } | 
| OLD | NEW | 
|---|