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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 ['toolkit_uses_gtk == 1', { | 132 ['toolkit_uses_gtk == 1', { |
133 'dependencies': [ | 133 'dependencies': [ |
134 '../build/linux/system.gyp:gtk', | 134 '../build/linux/system.gyp:gtk', |
135 ], | 135 ], |
136 }], | 136 }], |
137 ['use_glib == 1', { | 137 ['use_glib == 1', { |
138 'dependencies': [ | 138 'dependencies': [ |
139 '../build/linux/system.gyp:glib', | 139 '../build/linux/system.gyp:glib', |
140 ], | 140 ], |
141 }], | 141 }], |
142 ['use_webkit_compositor==1 and views_compositor==1', { | 142 ['views_compositor==1', { |
143 'dependencies': [ | 143 'dependencies': [ |
144 '../ui/gfx/compositor/compositor.gyp:compositor', | 144 '../ui/gfx/compositor/compositor.gyp:compositor', |
145 ], | 145 ], |
146 }, { | |
147 'dependencies': [ | |
148 '../ui/gfx/compositor/compositor.gyp:test_compositor', | |
149 ], | |
150 }], | 146 }], |
151 ], | 147 ], |
152 }, | 148 }, |
153 { | 149 { |
154 'target_name': 'content_unittests', | 150 'target_name': 'content_unittests', |
155 'type': 'executable', | 151 'type': 'executable', |
156 'defines!': ['CONTENT_IMPLEMENTATION'], | 152 'defines!': ['CONTENT_IMPLEMENTATION'], |
157 'dependencies': [ | 153 'dependencies': [ |
158 'content_browser', | 154 'content_browser', |
159 'content_gpu', | 155 'content_gpu', |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 ], | 463 ], |
468 'sources': [ | 464 'sources': [ |
469 'common/gpu/media/video_decode_accelerator_unittest.cc', | 465 'common/gpu/media/video_decode_accelerator_unittest.cc', |
470 ], | 466 ], |
471 } | 467 } |
472 ], | 468 ], |
473 }, | 469 }, |
474 ], | 470 ], |
475 ], | 471 ], |
476 } | 472 } |
OLD | NEW |