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. 3 include_rules = [ 4 # The subdirectories in content/ will manually allow their own include 5 # directories in content/ so we disallow all of them. 6 "-content", 7 "+content/common", 8 "+content/port/common", 9 "+content/public/common", 10 "+content/public/test", 11 "+content/shell", # for content_browsertests 12 "+content/test", 13 14 # content isn't tied to prefs so that other embedders are able to pick 15 # different ways of storing their preferences. Also, this is to avoid prefs 16 # being used as a parallel API to the Content API. 17 "-base/prefs", 18 19 "+cc", 20 "-cc/base/thread.h", # http://crbug.com/249172 21 "!cc/base/thread_impl.h", # http://crbug.com/249172 22 # If you want to use any of these files, move them to src/base first. 23 "-cc/base/hash_pair.h", 24 "-cc/base/scoped_ptr_algorithm.h", 25 "-cc/base/scoped_ptr_deque.h", 26 "-cc/base/scoped_ptr_hash_map.h", 27 "-cc/base/scoped_ptr_vector.h", 28 29 "+crypto", 30 "+grit/blink_resources.h", 31 "+grit/content_resources.h", 32 "+grit/ui_resources.h", 33 "+grit/ui_strings.h", 34 "+grit/webkit_resources.h", 35 "+grit/webkit_strings.h", 36 "+grit/webui_resources_map.h", 37 38 "+dbus", 39 "+gpu", 40 "+net", 41 "+ppapi", 42 "+printing", 43 "+sandbox", 44 "+skia", 45 46 # In general, content/ should not rely on google_apis, since URLs 47 # and access tokens should usually be provided by the 48 # embedder. 49 # 50 # There are a couple of specific parts of content that are excepted 51 # from this rule, see content/browser/speech/DEPS and 52 # content/browser/geolocation/DEPS. Both of these are cases of 53 # implementations that are strongly tied to Google servers, i.e. we 54 # don't expect alternate implementations to be provided by the 55 # embedder. 56 "-google_apis", 57 58 # Don't allow inclusion of these other libs we shouldn't be calling directly. 59 "-v8", 60 "-tools", 61 62 # Allow inclusion of third-party code: 63 "+third_party/angle_dx11", 64 "+third_party/flac", 65 "+third_party/gpsd", 66 "+third_party/libjingle", 67 "+third_party/mozilla", 68 "+third_party/npapi/bindings", 69 "+third_party/skia", 70 "+third_party/sqlite", 71 "+third_party/tcmalloc", 72 "+third_party/khronos", 73 "+third_party/webrtc", 74 "+third_party/zlib/google", 75 "+third_party/WebKit/public/platform", 76 "+third_party/WebKit/public/web", 77 78 "+ui/android", 79 # Aura is analogous to Win32 or a Gtk, so it is allowed. 80 "+ui/aura", 81 "+ui/base", 82 "+ui/compositor", 83 "+ui/gfx", 84 "+ui/gl", 85 "+ui/native_theme", 86 "+ui/shell_dialogs", 87 "+ui/snapshot", 88 "+ui/surface", 89 # Content knows about grd files, but the specifics of how to get a resource 90 # given its id is left to the embedder. 91 "-ui/base/l10n", 92 "-ui/base/resource", 93 # This file isn't related to grd, so it's fine. 94 "+ui/base/l10n/l10n_util_win.h", 95 96 # Content shouldn't depend on views. While we technically don't need this 97 # line, since the top level DEPS doesn't allow it, we add it to make this 98 # explicit. 99 "-ui/views", 100 101 "+webkit", 102 103 # For generated JNI includes. 104 "+jni", 105 ] 106