summaryrefslogtreecommitdiffstats
path: root/base/base.gyp
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-16 23:46:45 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-16 23:46:45 +0000
commite8ef09a6c4c3ee5282162eb64cfa05206fbf9513 (patch)
tree9f42dc13381cf2d8c62ecc18172b4f22b33d3e7a /base/base.gyp
parent1631786f88bf717d59da40603fdb882191beae8b (diff)
downloadchromium_src-e8ef09a6c4c3ee5282162eb64cfa05206fbf9513.zip
chromium_src-e8ef09a6c4c3ee5282162eb64cfa05206fbf9513.tar.gz
chromium_src-e8ef09a6c4c3ee5282162eb64cfa05206fbf9513.tar.bz2
Add targets for page_cycler_tests, perf_tests and startup_tests. Listed
minimal dependencies to build on Linux, Windows will need more. Make a 'test_support_base' library containing the .cc files used in common by perf tests in both net and chrome. Review URL: http://codereview.chromium.org/48021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11803 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base.gyp')
-rw-r--r--base/base.gyp17
1 files changed, 17 insertions, 0 deletions
diff --git a/base/base.gyp b/base/base.gyp
index 7808dcf..4017756 100644
--- a/base/base.gyp
+++ b/base/base.gyp
@@ -557,6 +557,23 @@
}],
],
},
+ {
+ 'target_name': 'test_support_base',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'base',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'perftimer.cc',
+ 'run_all_perftests.cc',
+ ],
+ 'direct_dependent_settings': {
+ 'defines': [
+ 'PERF_TEST',
+ ],
+ },
+ },
],
'conditions': [
[ 'OS == "win"', {