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", |
11 "+content/shell", # for content_browsertests | 11 "+content/shell", # for content_browsertests |
12 "+content/test", | 12 "+content/test", |
13 | 13 |
14 # content isn't tied to prefs so that other embedders are able to pick | 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 | 15 # different ways of storing their preferences. Also, this is to avoid prefs |
16 # being used as a parallel API to the Content API. | 16 # being used as a parallel API to the Content API. |
17 "-base/prefs", | 17 "-base/prefs", |
18 | 18 |
19 "+cc", | 19 "+cc", |
20 # If you want to use any of these files, move them to src/base first. | 20 # If you want to use any of these files, move them to src/base first. |
21 "-cc/base/hash_pair.h", | |
22 "-cc/base/scoped_ptr_algorithm.h", | 21 "-cc/base/scoped_ptr_algorithm.h", |
23 "-cc/base/scoped_ptr_deque.h", | 22 "-cc/base/scoped_ptr_deque.h", |
24 "-cc/base/scoped_ptr_vector.h", | 23 "-cc/base/scoped_ptr_vector.h", |
25 | 24 |
26 "+crypto", | 25 "+crypto", |
27 "+grit/blink_resources.h", | 26 "+grit/blink_resources.h", |
28 "+grit/content_resources.h", | 27 "+grit/content_resources.h", |
29 "+grit/ui_resources.h", | 28 "+grit/ui_resources.h", |
30 "+grit/ui_strings.h", | 29 "+grit/ui_strings.h", |
31 "+grit/webkit_resources.h", | 30 "+grit/webkit_resources.h", |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 # Content shouldn't depend on views. While we technically don't need this | 93 # Content shouldn't depend on views. While we technically don't need this |
95 # line, since the top level DEPS doesn't allow it, we add it to make this | 94 # line, since the top level DEPS doesn't allow it, we add it to make this |
96 # explicit. | 95 # explicit. |
97 "-ui/views", | 96 "-ui/views", |
98 | 97 |
99 "+webkit", | 98 "+webkit", |
100 | 99 |
101 # For generated JNI includes. | 100 # For generated JNI includes. |
102 "+jni", | 101 "+jni", |
103 ] | 102 ] |
OLD | NEW |