Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: content/content_tests.gypi

Issue 8036044: Add (not yet working) content_browsertests target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 30 matching lines...) Expand all
41 'browser/renderer_host/test_render_view_host.h', 41 'browser/renderer_host/test_render_view_host.h',
42 'browser/renderer_host/mock_render_process_host.cc', 42 'browser/renderer_host/mock_render_process_host.cc',
43 'browser/renderer_host/mock_render_process_host.h', 43 'browser/renderer_host/mock_render_process_host.h',
44 'browser/tab_contents/test_tab_contents.cc', 44 'browser/tab_contents/test_tab_contents.cc',
45 'browser/tab_contents/test_tab_contents.h', 45 'browser/tab_contents/test_tab_contents.h',
46 'common/test_url_constants.cc', 46 'common/test_url_constants.cc',
47 'common/test_url_constants.h', 47 'common/test_url_constants.h',
48 'gpu/gpu_idirect3d9_mock_win.cc', 48 'gpu/gpu_idirect3d9_mock_win.cc',
49 'gpu/gpu_idirect3d9_mock_win.h', 49 'gpu/gpu_idirect3d9_mock_win.h',
50 'renderer/mock_content_renderer_client.cc', 50 'renderer/mock_content_renderer_client.cc',
51 'test/browser_test.h',
52 'test/browser_test_base.cc',
53 'test/browser_test_base.h',
51 'test/content_test_suite.cc', 54 'test/content_test_suite.cc',
52 'test/content_test_suite.h', 55 'test/content_test_suite.h',
53 'test/test_browser_context.cc', 56 'test/test_browser_context.cc',
54 'test/test_browser_context.h', 57 'test/test_browser_context.h',
55 'test/test_content_client.cc', 58 'test/test_content_client.cc',
56 'test/test_content_client.h', 59 'test/test_content_client.h',
57 'test/test_notification_tracker.cc', 60 'test/test_notification_tracker.cc',
58 'test/test_notification_tracker.h', 61 'test/test_notification_tracker.h',
59 'test/test_tab_contents_view.cc', 62 'test/test_tab_contents_view.cc',
60 'test/test_tab_contents_view.h', 63 'test/test_tab_contents_view.h',
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes t.cc'], 190 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes t.cc'],
188 ], 191 ],
189 }], 192 }],
190 ['OS=="mac"', { 193 ['OS=="mac"', {
191 'dependencies': [ 194 'dependencies': [
192 'closure_blocks_leopard_compat', 195 'closure_blocks_leopard_compat',
193 ], 196 ],
194 }], 197 }],
195 ], 198 ],
196 }, 199 },
200 {
201 'target_name': 'content_browsertests',
202 'type': 'executable',
203 'dependencies': [
204 'content_browser',
205 'content_gpu',
206 'content_plugin',
207 'content_renderer',
208 'test_support_content',
209 '../base/base.gyp:test_support_base',
210 '../net/net.gyp:net_test_support',
211 '../testing/gtest.gyp:gtest',
212 ],
213 'include_dirs': [
214 '..',
215 ],
216 'defines': [
217 'HAS_OUT_OF_PROC_TEST_RUNNER',
218 'BROWSER_TESTS_USE_CONTENT',
jam 2011/09/29 21:21:37 not needed anymore?
Paweł Hajdan Jr. 2011/09/29 22:55:30 Done.
219 ],
220 'sources': [
221 'test/content_browser_test.h',
222 'test/content_browser_test.cc',
223 'test/content_test_launcher.cc',
jam 2011/09/29 21:21:37 did you forget to upload this?
Paweł Hajdan Jr. 2011/09/29 22:55:30 Initially yes, it is in more recent patchsets.
224 'test/test_launcher.cc',
225 'test/test_launcher.h',
226 ],
227 'conditions': [
228 ['OS=="win"', {
229 'dependencies': [
230 '../sandbox/sandbox.gyp:sandbox',
231 ],
232 'link_settings': {
233 'libraries': [
234 '-lcomctl32.lib',
235 ],
236 },
237 }],
238 ['OS=="win" and win_use_allocator_shim==1', {
239 'dependencies': [
240 '../base/allocator/allocator.gyp:allocator',
241 ],
242 }],
243 ],
244 },
197 ], 245 ],
198 'conditions': [ 246 'conditions': [
199 ['target_arch=="arm"', { 247 ['target_arch=="arm"', {
200 'targets': [ 248 'targets': [
201 { 249 {
202 'target_name': 'omx_video_decode_accelerator_unittest', 250 'target_name': 'omx_video_decode_accelerator_unittest',
203 'type': 'executable', 251 'type': 'executable',
204 'dependencies': [ 252 'dependencies': [
205 '../base/base.gyp:base', 253 '../base/base.gyp:base',
206 'content', 254 'content',
207 '../testing/gtest.gyp:gtest', 255 '../testing/gtest.gyp:gtest',
208 ], 256 ],
209 'include_dirs': [ 257 'include_dirs': [
210 '<(DEPTH)/third_party/angle/include', 258 '<(DEPTH)/third_party/angle/include',
211 '<(DEPTH)/third_party/openmax/il', 259 '<(DEPTH)/third_party/openmax/il',
212 ], 260 ],
213 'sources': [ 261 'sources': [
214 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', 262 'common/gpu/media/omx_video_decode_accelerator_unittest.cc',
215 ], 263 ],
216 } 264 }
217 ], 265 ],
218 }, 266 },
219 ], 267 ],
220 ], 268 ],
221 } 269 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698