| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 'views/proportional_image_view.h', | 99 'views/proportional_image_view.h', |
| 100 'views/toast_contents_view.cc', | 100 'views/toast_contents_view.cc', |
| 101 'views/toast_contents_view.h', | 101 'views/toast_contents_view.h', |
| 102 ], | 102 ], |
| 103 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 103 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 104 'msvs_disabled_warnings': [ 4267, ], | 104 'msvs_disabled_warnings': [ 4267, ], |
| 105 'conditions': [ | 105 'conditions': [ |
| 106 # This condition is for Windows 8 Metro mode support. We need to | 106 # This condition is for Windows 8 Metro mode support. We need to |
| 107 # specify a particular desktop during widget creation in that case. | 107 # specify a particular desktop during widget creation in that case. |
| 108 # This is done using the desktop aura native widget framework. | 108 # This is done using the desktop aura native widget framework. |
| 109 ['use_ash==1 and OS=="win"', { | 109 ['OS=="win"', { |
| 110 'dependencies': [ | 110 'dependencies': [ |
| 111 '../aura/aura.gyp:aura', | 111 '../aura/aura.gyp:aura', |
| 112 ], | 112 ], |
| 113 }], | 113 }], |
| 114 ['toolkit_views==1', { | 114 ['toolkit_views==1', { |
| 115 'dependencies': [ | 115 'dependencies': [ |
| 116 '../events/events.gyp:events', | 116 '../events/events.gyp:events', |
| 117 '../views/views.gyp:views', | 117 '../views/views.gyp:views', |
| 118 '../compositor/compositor.gyp:compositor', | 118 '../compositor/compositor.gyp:compositor', |
| 119 ], | 119 ], |
| (...skipping 118 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 |