diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-16 23:46:45 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-16 23:46:45 +0000 |
commit | e8ef09a6c4c3ee5282162eb64cfa05206fbf9513 (patch) | |
tree | 9f42dc13381cf2d8c62ecc18172b4f22b33d3e7a /base/base.gyp | |
parent | 1631786f88bf717d59da40603fdb882191beae8b (diff) | |
download | chromium_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.gyp | 17 |
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"', { |