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