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

Side by Side Diff: content/DEPS

Issue 8589001: Load mac sandbox definitions from resources instead of the bundle. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 9 years, 1 month 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 "+dbus", 21 "+dbus",
22 "+grit",
23 "+gpu", 22 "+gpu",
24 "+net", 23 "+net",
25 "+ppapi", 24 "+ppapi",
26 "+printing", 25 "+printing",
27 "+sandbox", 26 "+sandbox",
28 "+skia", 27 "+skia",
29 28
30 # Don't allow inclusion of these other libs we shouldn't be calling directly. 29 # Don't allow inclusion of these other libs we shouldn't be calling directly.
31 "-v8", 30 "-v8",
32 "-tools", 31 "-tools",
(...skipping 19 matching lines...) Expand all
52 "+ui/base/l10n/l10n_util_win.h", 51 "+ui/base/l10n/l10n_util_win.h",
53 52
54 # Content shouldn't depend on views. While we technically don't need this 53 # Content shouldn't depend on views. While we technically don't need this
55 # line, since the top level DEPS doesn't allow it, we add it to make this 54 # line, since the top level DEPS doesn't allow it, we add it to make this
56 # explicit. 55 # explicit.
57 "-views", 56 "-views",
58 57
59 # Aura Shell consumes views, so it too is banned. 58 # Aura Shell consumes views, so it too is banned.
60 "-ui/aura_shell", 59 "-ui/aura_shell",
61 60
61 # Don't allow inclusion of generated resources files.
62 "-grit",
jam 2011/11/23 20:29:17 can we just allow the ones that content can includ
jochen (gone - plz use gerrit) 2011/11/23 21:51:00 Done.
63
62 "+webkit", 64 "+webkit",
63 ] 65 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698