diff options
author | vivek.vg <vivek.vg@samsung.com> | 2014-12-22 06:37:10 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-22 14:38:30 +0000 |
commit | d155cb80c7b61e65f3999df1718c3be6e3cce0b4 (patch) | |
tree | af6a8cbd63a08f53c4fddbe37b7f4c7748b13070 /extensions/DEPS | |
parent | ccfd55115d9642d55e5346ae337bcb92f5f913a6 (diff) | |
download | chromium_src-d155cb80c7b61e65f3999df1718c3be6e3cce0b4.zip chromium_src-d155cb80c7b61e65f3999df1718c3be6e3cce0b4.tar.gz chromium_src-d155cb80c7b61e65f3999df1718c3be6e3cce0b4.tar.bz2 |
Tests in browser_tests target should use ChromeRenderViewTest as the base class.
Currently these tests are utilizing the content::RenderViewTest as the base class
whereas all other *_browsertest.cc are using ChromeRenderViewTest as the base class.
Due to this, the migration of inline CSS to GRD being done in [1] is failing
for browsertests target as listed here [2] in the build log.
In order to fix this, these tests should use the ChromeRenderViewTest as their base class.
In doing so, the ChromeRenderViewTest loads ChromeContentClient which in turn loads the correct
pak file i.e. resources.pak required for the migration.
This CL adds the extensions/DEPS rule to allow the inclusion of chrome_render_view_test.h.
[1] https://codereview.chromium.org/573553002
[2] http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/14184
Review URL: https://codereview.chromium.org/818563003
Cr-Commit-Position: refs/heads/master@{#309424}
Diffstat (limited to 'extensions/DEPS')
-rw-r--r-- | extensions/DEPS | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions/DEPS b/extensions/DEPS index b237be8..1a7b60a 100644 --- a/extensions/DEPS +++ b/extensions/DEPS @@ -48,6 +48,7 @@ specific_include_rules = { "+chrome/browser/extensions/test_extension_system.h", "+chrome/browser/ui/browser.h", "+chrome/common/extensions/features/feature_channel.h", + "+chrome/test/base/chrome_render_view_test.h", "+chrome/test/base/testing_profile.h", "+chrome/test/base/ui_test_utils.h", ], |