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 29 matching lines...) Expand all Loading... |
40 'browser/renderer_host/test_render_view_host.h', | 40 'browser/renderer_host/test_render_view_host.h', |
41 'browser/renderer_host/mock_render_process_host.cc', | 41 'browser/renderer_host/mock_render_process_host.cc', |
42 'browser/renderer_host/mock_render_process_host.h', | 42 'browser/renderer_host/mock_render_process_host.h', |
43 'browser/tab_contents/test_tab_contents.cc', | 43 'browser/tab_contents/test_tab_contents.cc', |
44 'browser/tab_contents/test_tab_contents.h', | 44 'browser/tab_contents/test_tab_contents.h', |
45 'common/test_url_constants.cc', | 45 'common/test_url_constants.cc', |
46 'common/test_url_constants.h', | 46 'common/test_url_constants.h', |
47 'gpu/gpu_idirect3d9_mock_win.cc', | 47 'gpu/gpu_idirect3d9_mock_win.cc', |
48 'gpu/gpu_idirect3d9_mock_win.h', | 48 'gpu/gpu_idirect3d9_mock_win.h', |
49 'renderer/mock_content_renderer_client.cc', | 49 'renderer/mock_content_renderer_client.cc', |
| 50 'test/browser_test.h', |
| 51 'test/browser_test_base.cc', |
| 52 'test/browser_test_base.h', |
| 53 'test/browser_test_suite.h', |
| 54 'test/content_browser_test.h', |
| 55 'test/content_browser_test.cc', |
50 'test/content_test_suite.cc', | 56 'test/content_test_suite.cc', |
51 'test/content_test_suite.h', | 57 'test/content_test_suite.h', |
52 'test/test_browser_context.cc', | 58 'test/test_browser_context.cc', |
53 'test/test_browser_context.h', | 59 'test/test_browser_context.h', |
54 'test/test_content_client.cc', | 60 'test/test_content_client.cc', |
55 'test/test_content_client.h', | 61 'test/test_content_client.h', |
56 'test/test_notification_tracker.cc', | 62 'test/test_notification_tracker.cc', |
57 'test/test_notification_tracker.h', | 63 'test/test_notification_tracker.h', |
58 'test/test_tab_contents_view.cc', | 64 'test/test_tab_contents_view.cc', |
59 'test/test_tab_contents_view.h', | 65 'test/test_tab_contents_view.h', |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 '../base/allocator/allocator.gyp:allocator', | 182 '../base/allocator/allocator.gyp:allocator', |
177 ], | 183 ], |
178 }], | 184 }], |
179 ['chromeos==1', { | 185 ['chromeos==1', { |
180 'sources/': [ | 186 'sources/': [ |
181 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes
t.cc'], | 187 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes
t.cc'], |
182 ], | 188 ], |
183 }], | 189 }], |
184 ], | 190 ], |
185 }, | 191 }, |
| 192 { |
| 193 'target_name': 'content_browsertests', |
| 194 'type': 'executable', |
| 195 'dependencies': [ |
| 196 'content_browser', |
| 197 'content_gpu', |
| 198 'content_plugin', |
| 199 'content_renderer', |
| 200 'test_support_content', |
| 201 '../base/base.gyp:test_support_base', |
| 202 '../net/net.gyp:net_test_support', |
| 203 '../testing/gtest.gyp:gtest', |
| 204 ], |
| 205 'include_dirs': [ |
| 206 '..', |
| 207 ], |
| 208 'defines': [ |
| 209 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 210 'BROWSER_TESTS_USE_CONTENT', |
| 211 ], |
| 212 'sources': [ |
| 213 'test/out_of_proc_test_runner.cc', |
| 214 ], |
| 215 'conditions': [ |
| 216 ['OS=="win"', { |
| 217 'dependencies': [ |
| 218 '../sandbox/sandbox.gyp:sandbox', |
| 219 ], |
| 220 'link_settings': { |
| 221 'libraries': [ |
| 222 '-lcomctl32.lib', |
| 223 ], |
| 224 }, |
| 225 }], |
| 226 ['OS=="win" and win_use_allocator_shim==1', { |
| 227 'dependencies': [ |
| 228 '../base/allocator/allocator.gyp:allocator', |
| 229 ], |
| 230 }], |
| 231 ], |
| 232 }, |
186 ], | 233 ], |
187 'conditions': [ | 234 'conditions': [ |
188 ['target_arch=="arm"', { | 235 ['target_arch=="arm"', { |
189 'targets': [ | 236 'targets': [ |
190 { | 237 { |
191 'target_name': 'omx_video_decode_accelerator_unittest', | 238 'target_name': 'omx_video_decode_accelerator_unittest', |
192 'type': 'executable', | 239 'type': 'executable', |
193 'dependencies': [ | 240 'dependencies': [ |
194 '../base/base.gyp:base', | 241 '../base/base.gyp:base', |
195 'content', | 242 'content', |
196 '../testing/gtest.gyp:gtest', | 243 '../testing/gtest.gyp:gtest', |
197 ], | 244 ], |
198 'include_dirs': [ | 245 'include_dirs': [ |
199 '<(DEPTH)/third_party/angle/include', | 246 '<(DEPTH)/third_party/angle/include', |
200 '<(DEPTH)/third_party/openmax/il', | 247 '<(DEPTH)/third_party/openmax/il', |
201 ], | 248 ], |
202 'sources': [ | 249 'sources': [ |
203 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', | 250 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', |
204 ], | 251 ], |
205 } | 252 } |
206 ], | 253 ], |
207 }, | 254 }, |
208 ], | 255 ], |
209 ], | 256 ], |
210 } | 257 } |
OLD | NEW |