From 0dd3a0ab424a01e887ac7f69dbbae6aaee6843c0 Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Fri, 18 Feb 2011 08:17:44 +0000 Subject: Start moving core pieces of Chrome multi-process code to src\content. I'm starting with tab_contents directory.In future changes the headers that include these files will be updated. Once all the files are moved (i.e. renderer_host, rest of browser, renderer etc), then refactoring can begin so that content\DEPS doesn't have chrome in it. Review URL: http://codereview.chromium.org/6537015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75369 0039d316-1c4b-4281-b951-d872f2087c98 --- content/DEPS | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 content/DEPS (limited to 'content/DEPS') diff --git a/content/DEPS b/content/DEPS new file mode 100644 index 0000000..fb297a3 --- /dev/null +++ b/content/DEPS @@ -0,0 +1,23 @@ +# Do NOT add chrome to the list below. We shouldn't be including files from +# src/chrome in src/content. +include_rules = [ + "+app", + + # TEMPORARY ONLY WHILE WE REDUCE THE DEPENDENCIES. + # When the src\content refactoring is complete, this will be unnecessary (and + # in fact, a layering violation). + "+chrome", + + "+grit", + "+net", + + # Don't allow inclusion of these other libs we shouldn't be calling directly. + "-v8", + "-tools", + + # Allow inclusion of WebKit API files. + "+third_party/WebKit/Source/WebKit/chromium", + + "+ui", + "+webkit", +] -- cgit v1.1