Index: ui/views/views.gyp |
diff --git a/ui/views/views.gyp b/ui/views/views.gyp |
index afb320d76f96c503509183785e6d7cc00cf5fc6b..15456c7054b65392c29862325030e0871a2d5cac 100644 |
--- a/ui/views/views.gyp |
+++ b/ui/views/views.gyp |
@@ -623,6 +623,23 @@ |
'test/webview_test_helper.h', |
], |
}, # target_name: views_with_content_test_support |
+ # Include this target for a main() function that instantiates and runs a |
+ # base::TestSuite subclass with resource support for views unit tests. |
+ { |
+ 'target_name': 'run_all_unittests', |
+ 'type': 'static_library', |
+ 'dependencies': [ |
+ '../../base/base.gyp:test_support_base', |
+ '../../skia/skia.gyp:skia', |
+ '../../testing/gtest.gyp:gtest', |
+ '../compositor/compositor.gyp:compositor', |
+ '../compositor/compositor.gyp:compositor_test_support', |
+ '../views/views.gyp:views', |
+ ], |
+ 'sources': [ |
+ 'run_all_unittests.cc', |
+ ], |
+ }, |
dharcourt
2013/03/14 20:21:57
This target is used as a dependency of ui/message_
|
{ |
'target_name': 'views_unittests', |
'type': 'executable', |