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

Unified Diff: chrome/chrome.gyp

Issue 48021: Add targets for page_cycler_tests, perf_tests and startup_tests. Listed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « base/base.gyp ('k') | net/net.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
===================================================================
--- chrome/chrome.gyp (revision 11749)
+++ chrome/chrome.gyp (working copy)
@@ -1715,6 +1715,7 @@
'..',
],
'sources': [
+ 'test/testing_browser_process.h',
'test/ui/npapi_test_helper.cc',
'test/ui/npapi_test_helper.h',
'test/ui/run_all_unittests.cc',
@@ -2172,8 +2173,89 @@
},
], # 'actions'
},
- ]}, # 'targets'
- ], # OS=="mac"
+ ]
+ }, { # else: OS != "mac"
+ 'targets': [
+ {
+ 'target_name': 'page_cycler_tests',
+ 'type': 'executable',
+ 'dependencies': [
+ 'resources',
+ 'test_support_ui',
+ '../base/base.gyp:base',
+ '../skia/skia.gyp:skia',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'test/page_cycler/page_cycler_test.cc',
+ 'tools/build/win/precompiled.cc',
+ 'tools/build/win/precompiled.h',
+ ],
+ 'conditions': [
+ ['OS!="win"', {
+ 'sources!': [
+ 'tools/build/win/precompiled.cc',
+ 'tools/build/win/precompiled.h',
+ ],
+ }],
+ ],
+ },
+ {
+ 'target_name': 'perf_tests',
+ 'type': 'executable',
+ 'dependencies': [
+ 'browser',
+ 'common',
+ 'resources',
+ '../base/base.gyp:base',
+ '../base/base.gyp:test_support_base',
+ '../skia/skia.gyp:skia',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'browser/visitedlink_perftest.cc',
+ 'test/perf/perftests.cc',
+ 'test/perf/url_parse_perftest.cc',
+ ],
+ 'conditions': [
+ ['OS=="linux"', {
+ 'sources!': [
+ # TODO(port):
+ 'browser/visitedlink_perftest.cc',
+ ],
+ }],
+ ],
+ },
+ {
+ 'target_name': 'startup_tests',
+ 'type': 'executable',
+ 'dependencies': [
+ 'browser',
+ 'common',
+ 'resources',
+ 'test_support_ui',
+ '../base/base.gyp:base',
+ '../skia/skia.gyp:skia',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'test/startup/feature_startup_test.cc',
+ 'test/startup/startup_test.cc',
+ 'tools/build/win/precompiled.cc',
+ 'tools/build/win/precompiled.h',
+ ],
+ 'conditions': [
+ ['OS!="win"', {
+ 'sources!': [
+ 'test/startup/feature_startup_test.cc',
+ 'tools/build/win/precompiled.cc',
+ 'tools/build/win/precompiled.h',
+ ],
+ }],
+ ],
+ },
+ ],
+ }], # OS!="mac"
['OS=="win"',
{ 'targets': [
{
« no previous file with comments | « base/base.gyp ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698