| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 # 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 |
| 109 # specify a particular desktop during widget creation in that case. | 109 # specify a particular desktop during widget creation in that case. |
| 110 # This is done using the desktop aura native widget framework. | 110 # This is done using the desktop aura native widget framework. |
| 111 ['use_ash==1 and OS=="win"', { | 111 ['use_ash==1 and OS=="win"', { |
| 112 'dependencies': [ | 112 'dependencies': [ |
| 113 '../aura/aura.gyp:aura', | 113 '../aura/aura.gyp:aura', |
| 114 ], | 114 ], |
| 115 }], | 115 }], |
| 116 ['toolkit_views==1', { | 116 ['toolkit_views==1', { |
| 117 'dependencies': [ | 117 'dependencies': [ |
| 118 '../compositor/compositor.gyp:compositor', | |
| 119 '../events/events.gyp:events', | 118 '../events/events.gyp:events', |
| 120 '../views/views.gyp:views', | 119 '../views/views.gyp:views', |
| 121 '../wm/wm.gyp:wm', | 120 '../compositor/compositor.gyp:compositor', |
| 122 ], | 121 ], |
| 123 }, { | 122 }, { |
| 124 'sources/': [ | 123 'sources/': [ |
| 125 ['exclude', 'views/'], | 124 ['exclude', 'views/'], |
| 126 ], | 125 ], |
| 127 }], | 126 }], |
| 128 ['use_ash==0', { | 127 ['use_ash==0', { |
| 129 'sources!': [ | 128 'sources!': [ |
| 130 'views/message_bubble_base.cc', | 129 'views/message_bubble_base.cc', |
| 131 'views/message_bubble_base.h', | 130 'views/message_bubble_base.h', |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 230 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 |
| 232 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { | 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 'dependencies': [ | 232 'dependencies': [ |
| 234 '../../base/allocator/allocator.gyp:allocator', | 233 '../../base/allocator/allocator.gyp:allocator', |
| 235 ], | 234 ], |
| 236 }], | 235 }], |
| 237 ], | 236 ], |
| 238 }, # target_name: message_center_unittests | 237 }, # target_name: message_center_unittests |
| 239 ], | 238 ], |
| 240 } | 239 } |
| OLD | NEW |