1 include_rules = [ 2 "+content/gpu", # For gpu_info_collector.h and in-process GPU 3 "+content/port/browser", 4 "+content/public/browser", 5 "+content/child/webkitplatformsupport_impl.h", # For in-process webkit 6 "+media/audio", # For audio input for speech input feature. 7 "+media/base", # For Android JNI registration. 8 "+media/midi", # For Web MIDI API 9 "+sql", 10 "+ui/webui", 11 "+win8/util", 12 13 # For single-process mode. 14 "+content/child/child_process.h", 15 "+content/utility/utility_thread_impl.h", 16 17 # TODO(joi): This was misplaced; need to move it somewhere else, 18 # since //content shouldn't depend on //components, which is a layer 19 # above. 20 "+components/tracing", 21 22 # Other libraries. 23 "+third_party/iaccessible2", 24 "+third_party/isimpledom", 25 "+third_party/khronos", # For enum definitions only 26 "+third_party/speex", 27 "+third_party/re2", 28 29 # Allow non-browser Chrome OS code to be used. 30 "+chromeos", 31 "+third_party/cros_system_api", 32 33 "-webkit/child", 34 "-webkit/renderer", 35 36 # No inclusion of WebKit from the browser, other than strictly enum/POD, 37 # header-only types, and some selected common code. 38 "-third_party/WebKit", 39 "+third_party/WebKit/public/platform/WebGamepads.h", 40 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h", 41 "+third_party/WebKit/public/platform/WebIDBCallbacks.h", 42 "+third_party/WebKit/public/platform/WebIDBDatabaseException.h", 43 "+third_party/WebKit/public/platform/WebIDBTypes.h", 44 "+third_party/WebKit/public/platform/WebReferrerPolicy.h", 45 "+third_party/WebKit/public/platform/WebScreenInfo.h", 46 "+third_party/WebKit/public/platform/WebString.h", 47 "+third_party/WebKit/public/platform/WebVibration.h", 48 "+third_party/WebKit/public/web/WebCompositionUnderline.h", 49 "+third_party/WebKit/public/web/WebConsoleMessage.h", 50 "+third_party/WebKit/public/web/WebCursorInfo.h", 51 "+third_party/WebKit/public/web/WebDragOperation.h", 52 "+third_party/WebKit/public/web/WebDragStatus.h", 53 "+third_party/WebKit/public/web/WebFindOptions.h", 54 "+third_party/WebKit/public/web/WebInputEvent.h", 55 "+third_party/WebKit/public/web/WebMediaPlayerAction.h", 56 "+third_party/WebKit/public/web/WebNotificationPresenter.h", 57 "+third_party/WebKit/public/web/WebPageSerializerClient.h", 58 "+third_party/WebKit/public/web/WebPluginAction.h", 59 "+third_party/WebKit/public/web/WebPopupType.h", 60 "+third_party/WebKit/public/web/WebScreenInfo.h", 61 "+third_party/WebKit/public/web/WebTextDirection.h", 62 63 # These should be burned down. http://crbug.com/237267 64 "!third_party/WebKit/public/web/gtk/WebInputEventFactory.h", 65 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", 66 67 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! 68 # See https://sites.google.com/a/chromium.org/dev/developers/content-module 69 # for more information. 70 ] 71