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

Side by Side Diff: content/DEPS

Issue 44933002: Implement OzonePlatform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
OLDNEW
1 # Do NOT add chrome or components to the list below. We shouldn't be 1 # Do NOT add chrome or components to the list below. We shouldn't be
2 # including files from src/chrome or src/components in src/content. 2 # including files from src/chrome or src/components in src/content.
3 include_rules = [ 3 include_rules = [
4 # The subdirectories in content/ will manually allow their own include 4 # The subdirectories in content/ will manually allow their own include
5 # directories in content/ so we disallow all of them. 5 # directories in content/ so we disallow all of them.
6 "-content", 6 "-content",
7 "+content/common", 7 "+content/common",
8 "+content/port/common", 8 "+content/port/common",
9 "+content/public/common", 9 "+content/public/common",
10 "+content/public/test", 10 "+content/public/test",
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 "+ui/android", 75 "+ui/android",
76 # Aura is analogous to Win32 or a Gtk, so it is allowed. 76 # Aura is analogous to Win32 or a Gtk, so it is allowed.
77 "+ui/aura", 77 "+ui/aura",
78 "+ui/base", 78 "+ui/base",
79 "+ui/compositor", 79 "+ui/compositor",
80 "+ui/events", 80 "+ui/events",
81 "+ui/gfx", 81 "+ui/gfx",
82 "+ui/gl", 82 "+ui/gl",
83 "+ui/native_theme", 83 "+ui/native_theme",
84 "+ui/ozone",
84 "+ui/shell_dialogs", 85 "+ui/shell_dialogs",
85 "+ui/snapshot", 86 "+ui/snapshot",
86 "+ui/surface", 87 "+ui/surface",
87 # Content knows about grd files, but the specifics of how to get a resource 88 # Content knows about grd files, but the specifics of how to get a resource
88 # given its id is left to the embedder. 89 # given its id is left to the embedder.
89 "-ui/base/l10n", 90 "-ui/base/l10n",
90 "-ui/base/resource", 91 "-ui/base/resource",
91 # This file isn't related to grd, so it's fine. 92 # This file isn't related to grd, so it's fine.
92 "+ui/base/l10n/l10n_util_win.h", 93 "+ui/base/l10n/l10n_util_win.h",
93 94
94 # Content shouldn't depend on views. While we technically don't need this 95 # Content shouldn't depend on views. While we technically don't need this
95 # line, since the top level DEPS doesn't allow it, we add it to make this 96 # line, since the top level DEPS doesn't allow it, we add it to make this
96 # explicit. 97 # explicit.
97 "-ui/views", 98 "-ui/views",
98 99
99 "+webkit", 100 "+webkit",
100 101
101 # For generated JNI includes. 102 # For generated JNI includes.
102 "+jni", 103 "+jni",
103 ] 104 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698