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

Unified Diff: ppapi/ppapi_tests.gypi

Issue 9195029: Add ppapi perftests infrastructure, plus a performance test for PPP_Messaging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ppapi/proxy/ppapi_perftests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/ppapi_tests.gypi
diff --git a/ppapi/ppapi_tests.gypi b/ppapi/ppapi_tests.gypi
index 0e23631a4a77449d840b810df00dc22f5ad7b4dd..6f915d61b46e15626e3e8ebb251fb81f7c4b6ff7 100644
--- a/ppapi/ppapi_tests.gypi
+++ b/ppapi/ppapi_tests.gypi
@@ -118,6 +118,44 @@
# ],
},
{
+ 'target_name': 'ppapi_unittest_shared',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'ppapi_proxy',
+ 'ppapi_shared',
+ '../base/base.gyp:test_support_base',
+ '../ipc/ipc.gyp:ipc',
+ '../ipc/ipc.gyp:test_support_ipc',
+ '../testing/gmock.gyp:gmock',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'proxy/ppapi_proxy_test.cc',
+ 'proxy/ppapi_proxy_test.h',
+ 'shared_impl/test_globals.cc',
+ 'shared_impl/test_globals.h',
+ ],
+ },
+
+ {
+ 'target_name': 'ppapi_perftests',
+ 'type': 'executable',
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'dependencies': [
+ 'ppapi_proxy',
+ 'ppapi_shared',
+ 'ppapi_unittest_shared',
+ '../base/base.gyp:test_support_base',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'proxy/ppapi_perftests.cc',
+ 'proxy/ppp_messaging_proxy_perftest.cc',
+ ],
+ },
+ {
'target_name': 'ppapi_unittests',
'type': 'executable',
'variables': {
@@ -126,6 +164,7 @@
'dependencies': [
'ppapi_proxy',
'ppapi_shared',
+ 'ppapi_unittest_shared',
'../base/base.gyp:test_support_base',
'../gpu/gpu.gyp:gpu_ipc',
'../ipc/ipc.gyp:ipc',
@@ -142,16 +181,12 @@
'proxy/plugin_dispatcher_unittest.cc',
'proxy/plugin_resource_tracker_unittest.cc',
'proxy/plugin_var_tracker_unittest.cc',
- 'proxy/ppapi_proxy_test.cc',
- 'proxy/ppapi_proxy_test.h',
'proxy/ppb_var_unittest.cc',
'proxy/ppp_instance_private_proxy_unittest.cc',
'proxy/ppp_instance_proxy_unittest.cc',
'proxy/ppp_messaging_proxy_unittest.cc',
'proxy/serialized_var_unittest.cc',
'shared_impl/resource_tracker_unittest.cc',
- 'shared_impl/test_globals.cc',
- 'shared_impl/test_globals.h',
'shared_impl/tracked_callback_unittest.cc',
'shared_impl/var_tracker_unittest.cc',
],
« no previous file with comments | « no previous file | ppapi/proxy/ppapi_perftests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698