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

Side by Side Diff: content/browser/DEPS

Issue 68683009: Rewrite include paths for Blink public/ headers that have moved (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 include_rules = [ 1 include_rules = [
2 "+content/port/browser", 2 "+content/port/browser",
3 "+content/public/browser", 3 "+content/public/browser",
4 "+content/child/webkitplatformsupport_impl.h", # For in-process webkit 4 "+content/child/webkitplatformsupport_impl.h", # For in-process webkit
5 "+media/audio", # For audio input for speech input feature. 5 "+media/audio", # For audio input for speech input feature.
6 "+media/base", # For Android JNI registration. 6 "+media/base", # For Android JNI registration.
7 "+media/midi", # For Web MIDI API 7 "+media/midi", # For Web MIDI API
8 "+media/video", # For Video Device monitoring in Mac. 8 "+media/video", # For Video Device monitoring in Mac.
9 "+sql", 9 "+sql",
10 "+ui/webui", 10 "+ui/webui",
(...skipping 14 matching lines...) Expand all
25 # Allow non-browser Chrome OS code to be used. 25 # Allow non-browser Chrome OS code to be used.
26 "+chromeos", 26 "+chromeos",
27 "+third_party/cros_system_api", 27 "+third_party/cros_system_api",
28 28
29 "-webkit/child", 29 "-webkit/child",
30 "-webkit/renderer", 30 "-webkit/renderer",
31 31
32 # No inclusion of WebKit from the browser, other than strictly enum/POD, 32 # No inclusion of WebKit from the browser, other than strictly enum/POD,
33 # header-only types, and some selected common code. 33 # header-only types, and some selected common code.
34 "-third_party/WebKit", 34 "-third_party/WebKit",
35 "+third_party/WebKit/public/platform/WebCursorInfo.h",
35 "+third_party/WebKit/public/platform/WebGamepads.h", 36 "+third_party/WebKit/public/platform/WebGamepads.h",
36 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h", 37 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h",
37 "+third_party/WebKit/public/platform/WebIDBCallbacks.h", 38 "+third_party/WebKit/public/platform/WebIDBCallbacks.h",
38 "+third_party/WebKit/public/platform/WebIDBDatabaseException.h", 39 "+third_party/WebKit/public/platform/WebIDBDatabaseException.h",
39 "+third_party/WebKit/public/platform/WebIDBTypes.h", 40 "+third_party/WebKit/public/platform/WebIDBTypes.h",
40 "+third_party/WebKit/public/platform/WebReferrerPolicy.h", 41 "+third_party/WebKit/public/platform/WebReferrerPolicy.h",
41 "+third_party/WebKit/public/platform/WebScreenInfo.h", 42 "+third_party/WebKit/public/platform/WebScreenInfo.h",
42 "+third_party/WebKit/public/platform/WebServiceWorkerError.h", 43 "+third_party/WebKit/public/platform/WebServiceWorkerError.h",
43 "+third_party/WebKit/public/platform/WebString.h", 44 "+third_party/WebKit/public/platform/WebString.h",
44 "+third_party/WebKit/public/platform/WebVibration.h", 45 "+third_party/WebKit/public/platform/WebVibration.h",
45 "+third_party/WebKit/public/web/WebAXEnums.h", 46 "+third_party/WebKit/public/web/WebAXEnums.h",
46 "+third_party/WebKit/public/web/WebCompositionUnderline.h", 47 "+third_party/WebKit/public/web/WebCompositionUnderline.h",
47 "+third_party/WebKit/public/web/WebConsoleMessage.h", 48 "+third_party/WebKit/public/web/WebConsoleMessage.h",
48 "+third_party/WebKit/public/web/WebCursorInfo.h",
49 "+third_party/WebKit/public/web/WebDragOperation.h", 49 "+third_party/WebKit/public/web/WebDragOperation.h",
50 "+third_party/WebKit/public/web/WebDragStatus.h", 50 "+third_party/WebKit/public/web/WebDragStatus.h",
51 "+third_party/WebKit/public/web/WebFindOptions.h", 51 "+third_party/WebKit/public/web/WebFindOptions.h",
52 "+third_party/WebKit/public/web/WebInputEvent.h", 52 "+third_party/WebKit/public/web/WebInputEvent.h",
53 "+third_party/WebKit/public/web/WebMediaPlayerAction.h", 53 "+third_party/WebKit/public/web/WebMediaPlayerAction.h",
54 "+third_party/WebKit/public/web/WebNotificationPresenter.h", 54 "+third_party/WebKit/public/web/WebNotificationPresenter.h",
55 "+third_party/WebKit/public/web/WebPageSerializerClient.h", 55 "+third_party/WebKit/public/web/WebPageSerializerClient.h",
56 "+third_party/WebKit/public/web/WebPluginAction.h", 56 "+third_party/WebKit/public/web/WebPluginAction.h",
57 "+third_party/WebKit/public/web/WebPopupType.h", 57 "+third_party/WebKit/public/web/WebPopupType.h",
58 "+third_party/WebKit/public/web/WebScreenInfo.h",
59 "+third_party/WebKit/public/web/WebSerializedScriptValueVersion.h", 58 "+third_party/WebKit/public/web/WebSerializedScriptValueVersion.h",
60 "+third_party/WebKit/public/web/WebTextDirection.h", 59 "+third_party/WebKit/public/web/WebTextDirection.h",
61 60
62 # These should be burned down. http://crbug.com/237267 61 # These should be burned down. http://crbug.com/237267
63 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", 62 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h",
64 63
65 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! 64 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!!
66 # See https://sites.google.com/a/chromium.org/dev/developers/content-module 65 # See https://sites.google.com/a/chromium.org/dev/developers/content-module
67 # for more information. 66 # for more information.
68 ] 67 ]
OLDNEW
« no previous file with comments | « components/plugins/renderer/webview_plugin.cc ('k') | content/browser/browser_plugin/browser_plugin_guest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698