Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: content/DEPS

Issue 9316077: Enable audio/video tag in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add comment; PathServiceTest.Get test still fails on mac Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Do NOT add chrome to the list below. We shouldn't be including files from 1 # Do NOT add chrome to the list below. We shouldn't be including files from
2 # src/chrome in src/content. 2 # src/chrome in src/content.
3 include_rules = [ 3 include_rules = [
4 "+crypto", 4 "+crypto",
5 5
6 "-chrome", 6 "-chrome",
7 # Until we move most of our testing infrastructure in a way that content can 7 # Until we move most of our testing infrastructure in a way that content can
8 # make use of it. 8 # make use of it.
9 "+chrome/test", 9 "+chrome/test",
10 10
11 # The subdirectories in content/ will manually allow their own include 11 # The subdirectories in content/ will manually allow their own include
12 # directories in content/ so we disallow all of them. 12 # directories in content/ so we disallow all of them.
13 "-content", 13 "-content",
14 "+content/common", 14 "+content/common",
15 "+content/public/common", 15 "+content/public/common",
16 "+content/test", 16 "+content/test",
17 17
18 # TODO(ben): remove this 18 # TODO(ben): remove this
19 "+content/public/browser/native_web_keyboard_event.h", 19 "+content/public/browser/native_web_keyboard_event.h",
20 20
21 "+grit/content_resources.h", 21 "+grit/content_resources.h",
22 "+grit/webkit_chromium_resources.h", 22 "+grit/webkit_chromium_resources.h",
23 "+grit/webkit_resources.h", 23 "+grit/webkit_resources.h",
24 "+grit/webkit_strings.h", 24 "+grit/webkit_strings.h",
25 25
26 "+dbus", 26 "+dbus",
27 "+gpu", 27 "+gpu",
28 "+media",
scherkus (not reviewing) 2012/03/06 02:14:06 nit: could we get a tighter scope? AFAIK content/
vrk (LEFT CHROMIUM) 2012/03/06 20:34:15 Done.
28 "+net", 29 "+net",
29 "+ppapi", 30 "+ppapi",
30 "+printing", 31 "+printing",
31 "+sandbox", 32 "+sandbox",
32 "+skia", 33 "+skia",
33 34
34 # Don't allow inclusion of these other libs we shouldn't be calling directly. 35 # Don't allow inclusion of these other libs we shouldn't be calling directly.
35 "-v8", 36 "-v8",
36 "-tools", 37 "-tools",
37 38
(...skipping 21 matching lines...) Expand all
59 # Content shouldn't depend on views. While we technically don't need this 60 # Content shouldn't depend on views. While we technically don't need this
60 # line, since the top level DEPS doesn't allow it, we add it to make this 61 # line, since the top level DEPS doesn't allow it, we add it to make this
61 # explicit. 62 # explicit.
62 "-views", 63 "-views",
63 64
64 # Aura Shell consumes views, so it too is banned. 65 # Aura Shell consumes views, so it too is banned.
65 "-ui/aura_shell", 66 "-ui/aura_shell",
66 67
67 "+webkit", 68 "+webkit",
68 ] 69 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698