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', |
118 '../events/events.gyp:events', | 119 '../events/events.gyp:events', |
119 '../views/views.gyp:views', | 120 '../views/views.gyp:views', |
120 '../compositor/compositor.gyp:compositor', | 121 '../wm/wm.gyp:wm', |
121 ], | 122 ], |
122 }, { | 123 }, { |
123 'sources/': [ | 124 'sources/': [ |
124 ['exclude', 'views/'], | 125 ['exclude', 'views/'], |
125 ], | 126 ], |
126 }], | 127 }], |
127 ['use_ash==0', { | 128 ['use_ash==0', { |
128 'sources!': [ | 129 'sources!': [ |
129 'views/message_bubble_base.cc', | 130 'views/message_bubble_base.cc', |
130 'views/message_bubble_base.h', | 131 'views/message_bubble_base.h', |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 231 # 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))', { | 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))', { |
232 'dependencies': [ | 233 'dependencies': [ |
233 '../../base/allocator/allocator.gyp:allocator', | 234 '../../base/allocator/allocator.gyp:allocator', |
234 ], | 235 ], |
235 }], | 236 }], |
236 ], | 237 ], |
237 }, # target_name: message_center_unittests | 238 }, # target_name: message_center_unittests |
238 ], | 239 ], |
239 } | 240 } |
OLD | NEW |