| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ui_test_support', | 8 'target_name': 'ui_test_support', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 ], | 152 ], |
| 153 'dependencies': [ | 153 'dependencies': [ |
| 154 '../build/linux/system.gyp:gtk', | 154 '../build/linux/system.gyp:gtk', |
| 155 ], | 155 ], |
| 156 }], | 156 }], |
| 157 ['toolkit_views==1', { | 157 ['toolkit_views==1', { |
| 158 'sources': [ | 158 'sources': [ |
| 159 'gfx/render_text_unittest.cc', | 159 'gfx/render_text_unittest.cc', |
| 160 ], | 160 ], |
| 161 }], | 161 }], |
| 162 ['use_aura==1 and OS!="win"', { | |
| 163 'sources!': [ | |
| 164 # aura does not yet have clipboard support. http://crbug.com/97845 | |
| 165 'base/clipboard/clipboard_unittest.cc', | |
| 166 ], | |
| 167 }], | |
| 168 ['use_aura==1', { | 162 ['use_aura==1', { |
| 169 'dependencies': [ | 163 'dependencies': [ |
| 170 'aura/aura.gyp:aura', | 164 'aura/aura.gyp:aura', |
| 171 ], | 165 ], |
| 172 }], | 166 }], |
| 173 ], | 167 ], |
| 174 }, | 168 }, |
| 175 ], | 169 ], |
| 176 } | 170 } |
| OLD | NEW |