diff options
Diffstat (limited to 'gfx')
-rw-r--r-- | gfx/gfx.gyp | 1 | ||||
-rw-r--r-- | gfx/test_suite.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gfx/gfx.gyp b/gfx/gfx.gyp index 5947c4a..33fbc21 100644 --- a/gfx/gfx.gyp +++ b/gfx/gfx.gyp @@ -17,6 +17,7 @@ 'dependencies': [ 'gfx', 'gfx_resources', + '../base/base.gyp:test_support_base', '../skia/skia.gyp:skia', '../testing/gtest.gyp:gtest', ], diff --git a/gfx/test_suite.h b/gfx/test_suite.h index 0b8de49..14d4ac9 100644 --- a/gfx/test_suite.h +++ b/gfx/test_suite.h @@ -11,6 +11,7 @@ #include <string> #include "gfx/gfx_paths.h" +#include "base/file_path.h" #include "base/path_service.h" #if defined(OS_MACOSX) #include "base/mac_util.h" @@ -18,7 +19,7 @@ #include "base/scoped_nsautorelease_pool.h" #include "base/test/test_suite.h" -class GfxTestSuite : public TestSuite { +class GfxTestSuite : public base::TestSuite { public: GfxTestSuite(int argc, char** argv) : TestSuite(argc, argv) { } |