diff options
author | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-02 05:27:43 +0000 |
---|---|---|
committer | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-02 05:27:43 +0000 |
commit | e6afa1f7e80ae2711f7b3e6e3bb88c69d46b9ccd (patch) | |
tree | 97bf90968dab9136f780cb9a9c632923af7c1ccf /chrome_frame | |
parent | af278c44b8168ea9db0cca050fcb1c109badef5a (diff) | |
download | chromium_src-e6afa1f7e80ae2711f7b3e6e3bb88c69d46b9ccd.zip chromium_src-e6afa1f7e80ae2711f7b3e6e3bb88c69d46b9ccd.tar.gz chromium_src-e6afa1f7e80ae2711f7b3e6e3bb88c69d46b9ccd.tar.bz2 |
Factor out a perf test result printer method.
This is to allow cc_perftests to share this code without depending on chrome/.
BUG=
Review URL: https://chromiumcodereview.appspot.com/23509002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220803 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/chrome_frame.gyp | 1 | ||||
-rw-r--r-- | chrome_frame/test/perf/chrome_frame_perftest.cc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/chrome_frame/chrome_frame.gyp b/chrome_frame/chrome_frame.gyp index 06648be..61ece92 100644 --- a/chrome_frame/chrome_frame.gyp +++ b/chrome_frame/chrome_frame.gyp @@ -338,6 +338,7 @@ '../content/content.gyp:content_gpu', '../testing/gmock.gyp:gmock', '../testing/gtest.gyp:gtest', + '../testing/perf/perf_test.gyp:*', '../third_party/libxml/libxml.gyp:libxml', '../third_party/libxslt/libxslt.gyp:libxslt', '../url/url.gyp:url_lib', diff --git a/chrome_frame/test/perf/chrome_frame_perftest.cc b/chrome_frame/test/perf/chrome_frame_perftest.cc index 443d441..c12c2c9 100644 --- a/chrome_frame/test/perf/chrome_frame_perftest.cc +++ b/chrome_frame/test/perf/chrome_frame_perftest.cc @@ -35,11 +35,11 @@ #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_paths_internal.h" #include "chrome/test/base/chrome_process_util.h" -#include "chrome/test/perf/perf_test.h" #include "chrome/test/ui/ui_perf_test.h" #include "chrome_frame/chrome_tab.h" #include "chrome_frame/test_utils.h" #include "chrome_frame/utils.h" +#include "testing/perf/perf_test.h" const wchar_t kSilverlightControlKey[] = L"CLSID\\{DFEAF541-F3E1-4c24-ACAC-99C30715084A}\\InprocServer32"; |