OLD | NEW |
1 # Do NOT add chrome to the list below. We shouldn't be including files | 1 # Do NOT add chrome to the list below. We shouldn't be including files |
2 # from src/chrome in src/content. | 2 # from src/chrome 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/app/resources/grit/content_resources.h", | 7 "+content/app/resources/grit/content_resources.h", |
8 "+content/common", | 8 "+content/common", |
9 "+content/grit", | 9 "+content/grit", |
10 "+content/public/common", | 10 "+content/public/common", |
(...skipping 18 matching lines...) Expand all Loading... |
29 "+crypto", | 29 "+crypto", |
30 "+grit/blink_resources.h", | 30 "+grit/blink_resources.h", |
31 "+grit/content_strings.h", | 31 "+grit/content_strings.h", |
32 | 32 |
33 "+dbus", | 33 "+dbus", |
34 "+gpu", | 34 "+gpu", |
35 "+media", | 35 "+media", |
36 "+mojo/common", | 36 "+mojo/common", |
37 "+mojo/edk/embedder", | 37 "+mojo/edk/embedder", |
38 "+mojo/edk/js", | 38 "+mojo/edk/js", |
39 "+mojo/edk/test", | |
40 "+mojo/message_pump", | 39 "+mojo/message_pump", |
41 "+mojo/public", | 40 "+mojo/public", |
42 "+net", | 41 "+net", |
43 "+ppapi", | 42 "+ppapi", |
44 "+printing", | 43 "+printing", |
45 "+sandbox", | 44 "+sandbox", |
46 "+skia", | 45 "+skia", |
47 | 46 |
48 # In general, content/ should not rely on google_apis, since URLs | 47 # In general, content/ should not rely on google_apis, since URLs |
49 # and access tokens should usually be provided by the | 48 # and access tokens should usually be provided by the |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 "+jni", | 117 "+jni", |
119 ] | 118 ] |
120 | 119 |
121 # content -> content/shell dependency is not allowed, except for browser tests. | 120 # content -> content/shell dependency is not allowed, except for browser tests. |
122 specific_include_rules = { | 121 specific_include_rules = { |
123 ".*_browsertest[a-z_]*\.(cc|h)": [ | 122 ".*_browsertest[a-z_]*\.(cc|h)": [ |
124 "+content/shell/browser", | 123 "+content/shell/browser", |
125 "+content/shell/common", | 124 "+content/shell/common", |
126 ], | 125 ], |
127 } | 126 } |
OLD | NEW |