OLD | NEW |
1 # Do NOT add chrome to the list below. We shouldn't be including files from | 1 # Do NOT add chrome to the list below. We shouldn't be including files from |
2 # src/chrome in src/content. | 2 # src/chrome in src/content. |
3 include_rules = [ | 3 include_rules = [ |
4 "+crypto", | 4 "+crypto", |
5 | 5 |
6 "-chrome", | |
7 # Until we move most of our testing infrastructure in a way that content can | 6 # Until we move most of our testing infrastructure in a way that content can |
8 # make use of it. | 7 # make use of it. |
9 "+chrome/test", | 8 "+chrome/test", |
10 | 9 |
11 # The subdirectories in content/ will manually allow their own include | 10 # The subdirectories in content/ will manually allow their own include |
12 # directories in content/ so we disallow all of them. | 11 # directories in content/ so we disallow all of them. |
13 "-content", | 12 "-content", |
14 "+content/common", | 13 "+content/common", |
15 "+content/public/common", | 14 "+content/public/common", |
16 "+content/public/test", | 15 "+content/public/test", |
| 16 "+content/shell", # for content_browsertests |
17 "+content/test", | 17 "+content/test", |
18 | 18 |
19 "+grit/content_resources.h", | 19 "+grit/content_resources.h", |
20 "+grit/ui_resources.h", | 20 "+grit/ui_resources.h", |
21 "+grit/webkit_chromium_resources.h", | 21 "+grit/webkit_chromium_resources.h", |
22 "+grit/webkit_resources.h", | 22 "+grit/webkit_resources.h", |
23 "+grit/webkit_strings.h", | 23 "+grit/webkit_strings.h", |
24 | 24 |
25 "+dbus", | 25 "+dbus", |
26 "+gpu", | 26 "+gpu", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "-views", | 68 "-views", |
69 | 69 |
70 # Aura Shell consumes views, so it too is banned. | 70 # Aura Shell consumes views, so it too is banned. |
71 "-ui/aura_shell", | 71 "-ui/aura_shell", |
72 | 72 |
73 "+webkit", | 73 "+webkit", |
74 | 74 |
75 # For generated JNI includes | 75 # For generated JNI includes |
76 "+jni", | 76 "+jni", |
77 ] | 77 ] |
OLD | NEW |