| OLD | NEW |
| 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 17 matching lines...) Expand all Loading... |
| 28 "+grit/content_resources.h", | 28 "+grit/content_resources.h", |
| 29 "+grit/ui_resources.h", | 29 "+grit/ui_resources.h", |
| 30 "+grit/ui_strings.h", | 30 "+grit/ui_strings.h", |
| 31 "+grit/webkit_resources.h", | 31 "+grit/webkit_resources.h", |
| 32 "+grit/webkit_strings.h", | 32 "+grit/webkit_strings.h", |
| 33 "+grit/webui_resources.h", | 33 "+grit/webui_resources.h", |
| 34 "+grit/webui_resources_map.h", | 34 "+grit/webui_resources_map.h", |
| 35 | 35 |
| 36 "+dbus", | 36 "+dbus", |
| 37 "+gpu", | 37 "+gpu", |
| 38 "+mojo", | 38 "+mojo/public", |
| 39 "+mojo/bindings/js", |
| 40 "+mojo/system/embedder", |
| 39 "+net", | 41 "+net", |
| 40 "+ppapi", | 42 "+ppapi", |
| 41 "+printing", | 43 "+printing", |
| 42 "+sandbox", | 44 "+sandbox", |
| 43 "+skia", | 45 "+skia", |
| 44 | 46 |
| 45 # In general, content/ should not rely on google_apis, since URLs | 47 # In general, content/ should not rely on google_apis, since URLs |
| 46 # and access tokens should usually be provided by the | 48 # and access tokens should usually be provided by the |
| 47 # embedder. | 49 # embedder. |
| 48 # | 50 # |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 # Content shouldn't depend on views. While we technically don't need this | 100 # Content shouldn't depend on views. While we technically don't need this |
| 99 # line, since the top level DEPS doesn't allow it, we add it to make this | 101 # line, since the top level DEPS doesn't allow it, we add it to make this |
| 100 # explicit. | 102 # explicit. |
| 101 "-ui/views", | 103 "-ui/views", |
| 102 | 104 |
| 103 "+webkit", | 105 "+webkit", |
| 104 | 106 |
| 105 # For generated JNI includes. | 107 # For generated JNI includes. |
| 106 "+jni", | 108 "+jni", |
| 107 ] | 109 ] |
| OLD | NEW |