Chromium Code Reviews| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 173 }], | 173 }], |
| 174 ['use_aura==1 and OS!="win"', { | 174 ['use_aura==1 and OS!="win"', { |
| 175 'sources!': [ | 175 'sources!': [ |
| 176 # aura does not yet have clipboard support. http://crbug.com/97845 | 176 # aura does not yet have clipboard support. http://crbug.com/97845 |
| 177 'base/clipboard/clipboard_unittest.cc', | 177 'base/clipboard/clipboard_unittest.cc', |
| 178 ], | 178 ], |
| 179 }], | 179 }], |
| 180 ['use_aura==1', { | 180 ['use_aura==1', { |
| 181 'dependencies': [ | 181 'dependencies': [ |
| 182 'aura/aura.gyp:aura', | 182 'aura/aura.gyp:aura', |
| 183 'gfx/compositor/compositor.gyp:compositor', | |
|
jonathan.backer
2011/10/25 20:13:53
It's only necessary to pull in compositor if you'r
sadrul
2011/10/25 20:28:42
That's what I thought too, but without this, I get
| |
| 184 'gfx/compositor/compositor.gyp:compositor_test_support', | |
| 183 ], | 185 ], |
| 184 }], | 186 }], |
| 185 ], | 187 ], |
| 186 }, | 188 }, |
| 187 ], | 189 ], |
| 188 } | 190 } |
| OLD | NEW |