| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'views/notifier_settings_view.cc', | 90 'views/notifier_settings_view.cc', |
| 91 'views/notifier_settings_view.h', | 91 'views/notifier_settings_view.h', |
| 92 'views/notification_button.cc', | 92 'views/notification_button.cc', |
| 93 'views/notification_button.h', | 93 'views/notification_button.h', |
| 94 'views/notification_view.cc', | 94 'views/notification_view.cc', |
| 95 'views/notification_view.h', | 95 'views/notification_view.h', |
| 96 'views/padded_button.cc', | 96 'views/padded_button.cc', |
| 97 'views/padded_button.h', | 97 'views/padded_button.h', |
| 98 'views/proportional_image_view.cc', | 98 'views/proportional_image_view.cc', |
| 99 'views/proportional_image_view.h', | 99 'views/proportional_image_view.h', |
| 100 'views/small_image_mask.cc', |
| 101 'views/small_image_mask.h', |
| 100 'views/toast_contents_view.cc', | 102 'views/toast_contents_view.cc', |
| 101 'views/toast_contents_view.h', | 103 'views/toast_contents_view.h', |
| 102 ], | 104 ], |
| 103 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 105 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 104 'msvs_disabled_warnings': [ 4267, ], | 106 'msvs_disabled_warnings': [ 4267, ], |
| 105 'conditions': [ | 107 'conditions': [ |
| 106 # This condition is for Windows 8 Metro mode support. We need to | 108 # This condition is for Windows 8 Metro mode support. We need to |
| 107 # specify a particular desktop during widget creation in that case. | 109 # specify a particular desktop during widget creation in that case. |
| 108 # This is done using the desktop aura native widget framework. | 110 # This is done using the desktop aura native widget framework. |
| 109 ['use_ash==1 and OS=="win"', { | 111 ['use_ash==1 and OS=="win"', { |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 # See http://crbug.com/162998#c4 for why this is needed. | 240 # See http://crbug.com/162998#c4 for why this is needed. |
| 239 ['OS=="linux" and use_allocator!="none"', { | 241 ['OS=="linux" and use_allocator!="none"', { |
| 240 'dependencies': [ | 242 'dependencies': [ |
| 241 '../../base/allocator/allocator.gyp:allocator', | 243 '../../base/allocator/allocator.gyp:allocator', |
| 242 ], | 244 ], |
| 243 }], | 245 }], |
| 244 ], | 246 ], |
| 245 }, # target_name: message_center_unittests | 247 }, # target_name: message_center_unittests |
| 246 ], | 248 ], |
| 247 } | 249 } |
| OLD | NEW |