summaryrefslogtreecommitdiffstats
path: root/content/public/test/DEPS
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-10 21:48:56 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-10 21:48:56 +0000
commit495d3f3bfdf29010827ef7b8a717a7a3100dbbe8 (patch)
tree57827397a0a33960efb26000274c92ba016ae2e1 /content/public/test/DEPS
parentf67339024e7ca0663d1a66213f2870837ff4f684 (diff)
downloadchromium_src-495d3f3bfdf29010827ef7b8a717a7a3100dbbe8.zip
chromium_src-495d3f3bfdf29010827ef7b8a717a7a3100dbbe8.tar.gz
chromium_src-495d3f3bfdf29010827ef7b8a717a7a3100dbbe8.tar.bz2
Fix a test which uses the RenderViewTest harness running in unit_test binaries. This gives an assert in WebKit in debug builds because WebKit is only supposed to be initialized once. The fix is to separate the test from the harness.
Review URL: https://codereview.chromium.org/11066098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161202 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/test/DEPS')
-rw-r--r--content/public/test/DEPS17
1 files changed, 9 insertions, 8 deletions
diff --git a/content/public/test/DEPS b/content/public/test/DEPS
index 602cf35..8589b78 100644
--- a/content/public/test/DEPS
+++ b/content/public/test/DEPS
@@ -4,11 +4,12 @@ include_rules = [
]
# Ensure we don't leak internal content headers through public headers.
-specific_include_rules = {
- ".*\.cc": [
- # Testing utilities can access anything in content/
- "+content",
- "+media/base",
- "+third_party/iaccessible2",
- ],
-}
+specific_include_rules = {
+ ".*\.cc": [
+ # Testing utilities can access anything in content/
+ "+content",
+ "+media/base",
+ "+third_party/iaccessible2",
+ "+ui/base/resource/resource_bundle.h",
+ ],
+}