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': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 'browser/geolocation/location_arbitrator_unittest.cc', | 110 'browser/geolocation/location_arbitrator_unittest.cc', |
111 'browser/geolocation/network_location_provider_unittest.cc', | 111 'browser/geolocation/network_location_provider_unittest.cc', |
112 'browser/geolocation/wifi_data_provider_common_unittest.cc', | 112 'browser/geolocation/wifi_data_provider_common_unittest.cc', |
113 'browser/geolocation/wifi_data_provider_linux_unittest.cc', | 113 'browser/geolocation/wifi_data_provider_linux_unittest.cc', |
114 'browser/geolocation/wifi_data_provider_unittest_win.cc', | 114 'browser/geolocation/wifi_data_provider_unittest_win.cc', |
115 'browser/geolocation/win7_location_api_unittest_win.cc', | 115 'browser/geolocation/win7_location_api_unittest_win.cc', |
116 'browser/geolocation/win7_location_provider_unittest_win.cc', | 116 'browser/geolocation/win7_location_provider_unittest_win.cc', |
117 'browser/gpu/gpu_blacklist_unittest.cc', | 117 'browser/gpu/gpu_blacklist_unittest.cc', |
118 'browser/in_process_webkit/webkit_context_unittest.cc', | 118 'browser/in_process_webkit/webkit_context_unittest.cc', |
119 'browser/in_process_webkit/webkit_thread_unittest.cc', | 119 'browser/in_process_webkit/webkit_thread_unittest.cc', |
| 120 'browser/mac/closure_blocks_leopard_compat_unittest.cc', |
120 'browser/mach_broker_mac_unittest.cc', | 121 'browser/mach_broker_mac_unittest.cc', |
121 'browser/renderer_host/gtk_key_bindings_handler_unittest.cc', | 122 'browser/renderer_host/gtk_key_bindings_handler_unittest.cc', |
122 'browser/renderer_host/media/audio_input_device_manager_unittest.cc', | 123 'browser/renderer_host/media/audio_input_device_manager_unittest.cc', |
123 'browser/renderer_host/media/audio_renderer_host_unittest.cc', | 124 'browser/renderer_host/media/audio_renderer_host_unittest.cc', |
124 'browser/renderer_host/media/media_stream_dispatcher_host_unittest.cc', | 125 'browser/renderer_host/media/media_stream_dispatcher_host_unittest.cc', |
125 'browser/renderer_host/media/video_capture_host_unittest.cc', | 126 'browser/renderer_host/media/video_capture_host_unittest.cc', |
126 'browser/renderer_host/media/video_capture_manager_unittest.cc', | 127 'browser/renderer_host/media/video_capture_manager_unittest.cc', |
127 'browser/renderer_host/render_view_host_unittest.cc', | 128 'browser/renderer_host/render_view_host_unittest.cc', |
128 'browser/renderer_host/resource_dispatcher_host_unittest.cc', | 129 'browser/renderer_host/resource_dispatcher_host_unittest.cc', |
129 'browser/renderer_host/resource_queue_unittest.cc', | 130 'browser/renderer_host/resource_queue_unittest.cc', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 ['OS=="win" and win_use_allocator_shim==1', { | 175 ['OS=="win" and win_use_allocator_shim==1', { |
175 'dependencies': [ | 176 'dependencies': [ |
176 '../base/allocator/allocator.gyp:allocator', | 177 '../base/allocator/allocator.gyp:allocator', |
177 ], | 178 ], |
178 }], | 179 }], |
179 ['chromeos==1', { | 180 ['chromeos==1', { |
180 'sources/': [ | 181 'sources/': [ |
181 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes
t.cc'], | 182 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes
t.cc'], |
182 ], | 183 ], |
183 }], | 184 }], |
| 185 ['OS=="mac"', { |
| 186 'dependencies': [ |
| 187 'closure_blocks_leopard_compat', |
| 188 ], |
| 189 }], |
184 ], | 190 ], |
185 }, | 191 }, |
186 ], | 192 ], |
187 'conditions': [ | 193 'conditions': [ |
188 ['target_arch=="arm"', { | 194 ['target_arch=="arm"', { |
189 'targets': [ | 195 'targets': [ |
190 { | 196 { |
191 'target_name': 'omx_video_decode_accelerator_unittest', | 197 'target_name': 'omx_video_decode_accelerator_unittest', |
192 'type': 'executable', | 198 'type': 'executable', |
193 'dependencies': [ | 199 'dependencies': [ |
194 '../base/base.gyp:base', | 200 '../base/base.gyp:base', |
195 'content', | 201 'content', |
196 '../testing/gtest.gyp:gtest', | 202 '../testing/gtest.gyp:gtest', |
197 ], | 203 ], |
198 'include_dirs': [ | 204 'include_dirs': [ |
199 '<(DEPTH)/third_party/angle/include', | 205 '<(DEPTH)/third_party/angle/include', |
200 '<(DEPTH)/third_party/openmax/il', | 206 '<(DEPTH)/third_party/openmax/il', |
201 ], | 207 ], |
202 'sources': [ | 208 'sources': [ |
203 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', | 209 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', |
204 ], | 210 ], |
205 } | 211 } |
206 ], | 212 ], |
207 }, | 213 }, |
208 ], | 214 ], |
209 ], | 215 ], |
210 } | 216 } |
OLD | NEW |