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

Side by Side Diff: content/DEPS

Issue 1116693002: [NOT FOR REVIEW] Significantly simplify the PlatformNotificationService //content API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
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/app/resources/grit/content_resources.h", 7 "+content/app/resources/grit/content_resources.h",
8 "+content/common", 8 "+content/common",
9 "+content/grit", 9 "+content/grit",
10 "+content/public/common", 10 "+content/public/common",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 # Aura is analogous to Win32 or a Gtk, so it is allowed. 81 # Aura is analogous to Win32 or a Gtk, so it is allowed.
82 "+ui/aura", 82 "+ui/aura",
83 "+ui/base", 83 "+ui/base",
84 "+ui/compositor", 84 "+ui/compositor",
85 "+ui/events", 85 "+ui/events",
86 "+ui/gfx", 86 "+ui/gfx",
87 "+ui/gl", 87 "+ui/gl",
88 "+ui/native_theme", 88 "+ui/native_theme",
89 "+ui/ozone/gpu", 89 "+ui/ozone/gpu",
90 "+ui/ozone/public", 90 "+ui/ozone/public",
91 "+ui/message_center/notification.h",
92 "+ui/message_center/notification_delegate.h",
91 "+ui/resources/grit/ui_resources.h", 93 "+ui/resources/grit/ui_resources.h",
92 "+ui/resources/grit/webui_resources.h", 94 "+ui/resources/grit/webui_resources.h",
93 "+ui/resources/grit/webui_resources_map.h", 95 "+ui/resources/grit/webui_resources_map.h",
94 "+ui/shell_dialogs", 96 "+ui/shell_dialogs",
95 "+ui/snapshot", 97 "+ui/snapshot",
96 "+ui/strings/grit/ui_strings.h", 98 "+ui/strings/grit/ui_strings.h",
97 "+ui/surface", 99 "+ui/surface",
98 "+ui/touch_selection", 100 "+ui/touch_selection",
99 "+ui/wm", 101 "+ui/wm",
100 # Content knows about grd files, but the specifics of how to get a resource 102 # Content knows about grd files, but the specifics of how to get a resource
101 # given its id is left to the embedder. 103 # given its id is left to the embedder.
102 "-ui/base/l10n", 104 "-ui/base/l10n",
103 "-ui/base/resource", 105 "-ui/base/resource",
104 # These files aren't related to grd, so they're fine. 106 # These files aren't related to grd, so they're fine.
105 "+ui/base/l10n/l10n_util_android.h", 107 "+ui/base/l10n/l10n_util_android.h",
106 "+ui/base/l10n/l10n_util_win.h", 108 "+ui/base/l10n/l10n_util_win.h",
107 109
108 # Content shouldn't depend on views. While we technically don't need this 110 # Content shouldn't depend on views. While we technically don't need this
109 # line, since the top level DEPS doesn't allow it, we add it to make this 111 # line, since the top level DEPS doesn't allow it, we add it to make this
110 # explicit. 112 # explicit.
111 "-ui/views", 113 "-ui/views",
112 114
113 "+storage/browser", 115 "+storage/browser",
114 "+storage/common", 116 "+storage/common",
115 "+webkit", 117 "+webkit",
116 118
117 # For generated JNI includes. 119 # For generated JNI includes.
118 "+jni", 120 "+jni",
119 ] 121 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698